Created
November 17, 2015 10:57
-
-
Save valchaqui/28e3e1c4c98737314192 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int main(){ | |
int num[20], k, porc; | |
printf("Entre com uma sequência de 20 números:"); | |
for(k=1;k<=20;k++){ | |
printf("%d.o numero", k); | |
scanf("%d", &num[k-1]); | |
porc=5*k; | |
printf("Porcentagem: %d porcento ", porc); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment