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
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
Math,
6 months ago
Math,
6 months ago
Physics,
1 year ago
Biology,
1 year ago
Political Science,
1 year ago