Computer Science, asked by ambalikachatterjee19, 7 months ago

Write a program to accept N numbers and find out sum of the Odd numbers or Even numbers. in Qbasic programming language.​

Answers

Answered by Ritughara372
0

Answer:

The program output is also shown below.

int i, num, odd_sum = 0, even_sum = 0;

printf("Enter the value of num\n");

scanf("%d", &num);

for (i = 1; i <= num; i++)

if (i % 2 == 0)

even_sum = even_sum + i;

odd_sum = odd_sum + i;

printf("Sum of all odd numbers = %d\n", odd_sum);

Similar questions