返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     string str;
  6.     getline(cin,str);
  7.     cout<<str<<" change to "<<stoi(str)<<endl;
  8.    
  9.     return 0;
  10. }
複製代碼

TOP

返回列表