PAT-乙-1023 1023 組個最小數 (20 分))

代碼 #include <iostream> #include <sstream> using namespace std; const int MAX = 10; string intToString(int t){ stringstream ss; ss<<t; string tmp; ss>>tmp; return tmp; } int main(){ int dig
相關文章
相關標籤/搜索