您的位置:首页 > 其它

AC日记——Little Elephant and Function codeforces 221a

2017-05-10 22:28 816 查看
A - Little Elephant and Function

思路:

  水题;

代码:

#include <cstdio>
#include <iostream>

using namespace std;

int n;

int main()
{
scanf("%d",&n);
printf("%d ",n);
for(int i=1;i<n;i++) printf("%d ",i);
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: