返回列表 發帖

509 字串拆解

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一程式,讓使用者輸入一個用斜線(/)分隔的整數字串,字串長度不得超過128字元,將字串中的整數字元轉換為整數後輸出(以半形空格隔開),最後計算總合。

提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
用斜線(/)分隔的整數字串

輸出說明
字串轉為整數的結果及總和

範例輸入
6/-3/8/12
範例輸出
6 -3 8 12
23


本帖隱藏的內容需要回復才可以瀏覽

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string s1, s2;
  4. int main()
  5. {
  6.     cin>>s1>>s2;
  7.     int l1=s1.length();
  8.     int l2=s2.length();
  9.     if(l1>3 && l1<=20 && l2>3 && l2<=20)
  10.     {
  11.         cout<<l1<<endl;
  12.         cout<<l2<<endl;
  13.         for(int i=l2-1; i>=0; i--)
  14.             cout<<s2[i];
  15.         for(int i=l1-1; i>=0; i--)
  16.             cout<<s1[i];
  17.     }else
  18.     {
  19.         cout<<"error"<<endl;
  20.     }
  21.     return 0;
  22. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string str;
  4. int n, sum=0;
  5. stringstream ss;
  6. int main()
  7. {
  8.     cin>>str;
  9.     replace(begin(str),end(str),'/',' ');  //將字串中的/以半形空白取代
  10.     cout<<str<<endl;
  11.     ss<<str;
  12.     while(ss>>n)
  13.         sum+=n;
  14.     cout<<sum<<endl;
  15.     return 0;
  16. }
複製代碼
(☆▽☆)<--按下去是roblox

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string str;
  4. int n,sum=0;
  5. stringstream ss;
  6. int main()
  7. {
  8.     cin>>str;
  9.     replace(begin(str),end(str),'/',' ');
  10.     ss<<str;
  11.     ss>>n;
  12.     cout<<n;
  13.     sum+=n;
  14.     while(ss>>n)
  15.     {
  16.         cout<<" "<<n;
  17.         sum+=n;
  18.     }
  19.     cout<<endl<<sum<<endl;
  20.     return 0;
  21. }
複製代碼

TOP

返回列表