Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //IFF - Introdução à Programação
- //Lista de Exercicios - 35
- #include<stdio.h>
- #include<locale.h>
- int main(){
- setlocale(LC_ALL,"Portuguese");
- int numero,i = 0;
- printf("Entre com o número alvo: ");
- scanf("%d",&numero);
- for(i=0;i<=numero;i++) if((i%7)==0) printf("%d ",i);
- }
Advertisement
Add Comment
Please, Sign In to add comment