Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Apresentar os números entre 10 e 0, ou seja, em ordem decrescente.
- #include <stdio.h>
- int main(void)
- {
- int i;
- printf("Numeros de 10 ate 0");
- for(i=10; i >=0 ; i--){
- printf("\n%d\t", i);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment