ZeroJudge & UVa Online Judge answers
#include using namespace std; int main() { int n; while(cin >> n) { for(int i=1; i<=n; i++) { int temp; cin >> temp; cout << i << " "; } cout << endl; } }
No comments:
Post a Comment