Statement of C Program: WAP(Write a Program) to Find the Number of Integer Divisible by 5 between the given range N1 and N2 , where N1<N2 and are Integers. Also Find the Sum of all these Integer Numbers that are Divisible by 5.
#include<stdio.h>
#include<conio.h>
main()
{
int i , N1 , N2 , count = 0 , sum = 0;
clrscr();
printf(" Enter the values of N1 and N2\n");
scanf("%d%d" , &N1 , &N2);
printf(" Integers divisible by 5 are\n");
{
if((i%5) == 0)
{
printf("%d" , i)
count ++;
sum = sum +i;
}
}
printf("\n Number of integers divisible by 5 between %d and %d = %d\n" , N1 , N2 , count);
printf(" Sum of all integer divisible by 5 = %d\n" , sum);
getch();
} /* End of main() */
Output:
Enter the value of N1 and N2
2
27
Integer divisible by 5 are
5 , 10 , 15 , 20 , 25
Number of integers divisible by 5 between 2 and 27 = 5
sum of integer that are divisible by 5 = 75
That's All
0 Response to "WAP to Find the Number of Integers Divisible by 5 between Given Range of Values by using for Statement"
Post a Comment