diogoAlves

IFF/Introdução à Programação/Lista/35

Feb 22nd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. //IFF - Introdução à Programação
  2. //Lista de Exercicios - 35
  3. #include<stdio.h>
  4. #include<locale.h>
  5.  
  6. int main(){
  7.     setlocale(LC_ALL,"Portuguese");
  8.     int numero,i = 0;
  9.     printf("Entre com o número alvo: ");
  10.     scanf("%d",&numero);
  11.     for(i=0;i<=numero;i++) if((i%7)==0) printf("%d ",i);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment