PAT-乙-1019 1019 數字黑洞 (20 分)

代碼 #include <iostream> #include <sstream> using namespace std; string intToString(int t) { stringstream ss; ss<<t; string tmp; ss>>tmp; while(tmp.length()<4) { tmp = "0" + tmp; } return tmp
相關文章
相關標籤/搜索