Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147892 于墨轩 02买铅笔 C++ Compile Error 0 MS 0 KB 298 2026-02-08 23:06:35

Tests(0/0):


Code:

#include<bits/stdc++.h using namespace std; int main(){ int a, b, c, d; cin >> a >> b >> c >> d; int price_in_jiao = a * 10 + b; int budget_in_jiao = c * 10 + d; int max_count = budget_in_jiao / price_in_jiao; cout << max_count << endl; return 0; }


Run Info:

Main.cc:1:23: error: missing terminating > character
 #include