Run ID:110391

提交时间:2025-02-18 18:49:11

#include <iostream> #include <string> int main(){ //假设从图片文字中提取的数字(根据问题描述和可识别部分) std::string twoDigitNumber="09"; //两位数 std::string fourDigitNumber="11121"; //四位数 std::string anotherTwoDigitNumber="XX"; std::string threeDigitNumber1="XXX"; std::string threeDigitNumber2="YYY"; std::cout<<"两位数"<<twoDigitNumber<<std::endl; std::cout<<"四位数"<<fourDigitNumber<<std::endl; return 0; }