C PROGRAM TO PRINT 1 TO N IF N IS A 3 DIGIT OR MORE THAN A 3 DIGIT NUMBER THEN BREAK
Consider the following I/O samples.
SAMPLE INPUT: 200
SAMPLE OUTPUT: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
The algorithm used here is :
- Input the value
- Use for loop to print from 1 to n
- if(i==100) break;
- Print the output
int main()
{
int n,i;
scanf("%d",&n);
printf("\n");
for(i=1;i<=n;i++)
{
if(i==100)
break;
printf("%d ",i );
}
return 0;
}
OUTPUT:
The given source code in C program "to print 1 to N (if n is a 3 digit or more than a 3 digit number then break)" is short and simple to understand. The source code is well tested in DEV-C++ and is completely error free.
If you have any feedback about this article and want to improve this, please write to nivisonu23@gmail.com
Comments
Post a Comment