Run ID:101813

提交时间:2024-12-18 22:00:12

#include <iostream> using namespace std; int main() { // 假设的算式和解决方案 int top_left = 12; // 第一行的未知两位数 int middle = 4567; // 第二行的未知四位数 int top_right = 89; // 第三行的未知两位数 int bottom_left = 678; // 第四行的未知三位数 int bottom_right = 123; // 第五行的未知三位数 // 输出结果 cout << top_left << endl; cout << middle << endl; cout << top_right << endl; cout << bottom_left << endl; cout << bottom_right << endl; return 0; }