Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102075 | 秦浩然 | 11整数的除法 | C++ | Compile Error | 0 MS | 0 KB | 139 | 2024-12-21 11:53:08 |
#include<iostream> using namespace std; int main(){ int a,b,s,y; cin>>a>>b; cout<<a/b=s<<" "<<y; return 0; }
Main.cc: In function 'int main()': Main.cc:6:18: error: invalid operands of types 'int' and 'const char [2]' to binary 'operator<<' cout<