Skip to content

Instantly share code, notes, and snippets.

@victorsenam
Created March 4, 2016 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save victorsenam/dabe524da5acc2c64d06 to your computer and use it in GitHub Desktop.
Save victorsenam/dabe524da5acc2c64d06 to your computer and use it in GitHub Desktop.
Código Esqueleto em C++
#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