moranguinho

ex1ER1

Apr 3rd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. //1) Apresentar os números entre 20 e 35.
  2. #include <stdio.h>
  3. int main (void)
  4. {
  5. int i; // contar as repetiçoes do for
  6.  
  7. for(i=20;i<=35;i++ ){
  8. printf("%d\t", i);
  9. }
  10. }
Add Comment
Please, Sign In to add comment