write QBasic program to add all odd number from 1to 30
Answers
Answered by
2
Answer:
Write a basic program to add all odd numbers from 1 to 30.
Explanation:
#include <stdio.h>
int main()
{
int i, n, sum=0;
/* Input range to find sum of odd numbers */
printf("Enter upper limit: ");
scanf("%d", &n);
/* Find the sum of all odd number */
for(i=1; i<=n; i+=2)
{
sum += i;
}
printf("Sum of odd numbers = %d", sum);
return 0;
}
Answered by
0
Answer:
tell the correct answer. ..
Similar questions