327B. Hungry Sequence

Revision en1, by always_4ever_5_25__21_SS, 2016-05-28 02:13:07

OK, so i didn't get what the tutorial of that really meant, and that tutorial looked long..-_-

Fortunately, I found a better solution. And my solution is mainly like 2 lines!!! :p I think it's better if you see the code rather than me trying to explain it.....

include<bits/stdc++.h>

using namespace std;

int main(){ int n, i; cin>>n; for(i=0;i<n;i++)cout<<i+n*10<<" "; return 0; }

For any question or suggestion, feel free!!!

Tags #327b, hungry sequence

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English always_4ever_5_25__21_SS 2016-05-28 02:16:04 3
en1 English always_4ever_5_25__21_SS 2016-05-28 02:13:07 486 Initial revision (published)