DO NOT MISS

Ads

Sunday 31 July 2016

Program 9 Using While loop


#include<stdio.h> 
#include<conio.h> 

void main()

       {

            int a,b,i;
            clrscr();

            printf("enter starting year:");
            scanf("%d",&a); 

            printf("enter ending year:");
            scanf("%d",&b); 


            i=a;
                    while(i<=b)

                        {

                            if(i%4==0)
                            printf("%d\n",i); 
                            i++; 

                        }

            getch();

      }

Output:-
______________________________________________________
______________________________________________________
______________________________________________________
______________________________________________________


Greataims

 
Copyright © 2016 Computersadda. Designed by @ Computersadda Team - Published By Greataims