1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #include <stdio.h> void main() { int n,i; n=10; i=1; while(n>=1&&i <= 10) { printf("%d \t %d\n",n,i); n--; i++; } } |
Subscribe to:
Post Comments
(
Atom
)
Post a Comment