moranguinho

ex5ER1

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