返回列表 發帖

  1. #include <iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=0, y=0;
  7.     string s;
  8.     cin>>s;
  9.     for(int i = 0; i < s.length(); i++)
  10.     {
  11.         if(i%2==0)
  12.         {
  13.             y+=s[i]-48;
  14.         }
  15.         else
  16.         {
  17.             x+=s[i]-48;
  18.         }
  19.     }
  20.     if(x-y<0)
  21.     {
  22.         cout<<-(x-y);
  23.     }
  24.     else
  25.     {
  26.         cout<<(x-y);
  27.     }
  28.     return 0;
  29. }
複製代碼
https://www.facebook.com/DABRiXPERT6584

TOP

  1. #include <string>
  2. #include <iostream>

  3. using namespace std;

  4. int main()
  5. {
  6.     string str;
  7.     int  e, o, r;
  8.     e = o = 0;
  9.     cin>>str;
  10.     for(int i = 0; i < str.length(); i += 2)
  11.     {
  12.         o += (str[i]-48);
  13.     }
  14.     for(int i = 1; i < str.length(); i += 2)
  15.     {
  16.         e += (str[i]-48);
  17.     }
  18.     if(e > o)
  19.     {
  20.         r = e - o;
  21.     }
  22.     else
  23.         r = o - e;
  24.     cout<<r<<endl;
  25.     return 0;
  26. }
複製代碼

TOP

返回列表