#include<stdio.h>
int main()
{
int a ;
printf("enter the number\n");
scanf("%d", &a);
do
{
printf("%d\n", a);
a=a-3;
} while (a>0);
return 0;
}
Hackathons are often associated with computer science students, experienced developers, and teams that already know exactly what they are...
No comments:
Post a Comment