Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Michael Martins */
- /* 5) Escreva um programa em C para ler um valor N e imprimir todos os valores inteiros
- entre 1 (inclusive) e N (inclusive). Considere que o N será sempre maior que ZERO. */
- #include "stdio.h"
- #include "stdlib.h"
- int main(){
- int num;
- printf("Entre com um numero: ");
- scanf("%d", &num);
- for(int i=1; i<=num; i++)
- printf("%d ", i);
- printf("\n");
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement