moranguinho

ex4ER1

Apr 3rd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // Apresentar os números entre 10 e 0, ou seja, em ordem decrescente.
  2. #include <stdio.h>
  3. int main(void)
  4. {
  5. int i;
  6.  
  7. printf("Numeros de 10 ate 0");
  8. for(i=10; i >=0 ; i--){
  9. printf("\n%d\t", i);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment