Computer Science, asked by kunalsingh74034, 1 year ago

QBasic
Write a program to display the following series of numbers.
100. 97. 94.91.... .4.1.
If you answer my question I will Mark you as brainlist​

Answers

Answered by aashay04
3

Explanation:

#include <stdio.h>

int main()

{

int n;

printf("Enter value of n: ");

scanf("%d", &n);

while(n>=3)

{

printf("%d\n", n);

n--;

}

return 0;

}


aashay04: the answer was helpful
Similar questions