Advertisement
Guest User

Untitled

a guest
Jan 31st, 2015
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int n;
  6.  
  7. int main()
  8. {
  9.    printf(" Introduce n : "); scanf("%d",&n);
  10.  
  11.    while ( n != 0 )
  12.    {
  13.     printf("%d\n",n);
  14.     printf(" Introduce n : "); scanf("%d",&n);
  15.    }
  16.  
  17.    return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement