Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87969 毛靖平 02买礼物 C++ Compile Error 0 MS 0 KB 169 2024-08-16 15:13:26

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c; a = 1000 b = 220 c = 4 cin>>a>>b>>c; cout<<a-b*c; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:6:3: error: expected ';' before 'b'
   b = 220
   ^