Computer Science, asked by 10b13jdevendrakumarr, 20 hours ago

20 2 Accept ano and find out the given nos divisible Lou 5 ou Drot. Il not I thieu Duint the neanesti oto: Juem the D given me which is divisible by 5.​

Answers

Answered by pranay9018
0

Answer:

\huge \underbrace \mathfrak \red{Mark \: me\: as\: a\: Brainliest \:pls}

Explanation:

\huge \mathfrak \textcolor{Cyan}{{ur \: answer\: us\:there\: in \:image}}

/*

* C program to find the number of integers divisible by

* 5 between the given range num1 and num2, where num1 < num2.

*

* Also find the sum of all these integer numbers which are divisible

* by 5 and display the total.

*/

#include <stdio.h>

void main()

{

int i, num1, num2, count = 0, sum = 0;

printf("Enter the value of num1 and num2 \n");

scanf("%d %d", &num1, &num2);

/* Count the number and compute their sum*/

printf("Integers divisible by 5 are \n");

for (i = num1; i < num2; i++)

{

if (i % 5 == 0)

{

printf("%3d,", i);

count++;

sum = sum + i;

}

}

printf("\n Number of integers divisible by 5 between %d and %d =

%d\n", num1, num2, count);

printf("Sum of all integers that are divisible by 5 = %d\n", sum);

}

Attachments:
Similar questions