QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#398000 | #6747. Permutation | maxmin | Compile Error | / | / | C++17 | 170b | 2024-04-24 21:05:10 | 2024-04-24 21:05:14 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
int main(){
int n;
cin>>n;
for(int i=1;i<=n;i++){
cout<<i<<" ";
}
cout<<endl;
return ;
}
详细
answer.code: In function ‘int main()’: answer.code:11:9: error: return-statement with no value, in function returning ‘int’ [-fpermissive] 11 | return ; | ^~~~~~