Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149954 向运淇 11整数的除法 C++ Compile Error 0 MS 0 KB 115 2026-03-21 11:41:55

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a/b<<" "<<a%b; reurn 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:7:2: error: 'reurn' was not declared in this scope
  reurn 0;
  ^