Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113640 赵梓渊 02计算(a+b)/c C++ Compile Error 0 MS 0 KB 134 2025-03-16 11:56:04

Tests(0/0):


Code:

using namespace std ; int main() { int a; int b; int c; cin >> a; cin >> b; cin >> c; cout << a+b/c; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:6:2: error: 'cin' was not declared in this scope
  cin >> a;
  ^
Main.cc:9:2: error: 'cout' was not declared in this scope
  cout << a+b/c;
  ^