Created
March 4, 2016 21:27
-
-
Save victorsenam/dabe524da5acc2c64d06 to your computer and use it in GitHub Desktop.
Código Esqueleto em C++
This file contains hidden or 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 <bits/stdc++.h> | |
using namespace std; | |
int main ( ) { | |
int n; | |
int v[200]; | |
scanf("%d", &n); | |
for (int i = 0; i < n; i++) | |
scanf("%d", &v[i]); | |
for (int i = 0; i < n; i++) | |
printf("%d\n", v[i]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment