題目連結: https://zerojudge.tw/ShowProblem?problemid=a130
# 解題思路
跟計算 11 的倍數有異曲同工之妙!!
偶數和 - 奇數和,取絕對值,絕對難不倒你
# 程式碼
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
int main() { | |
string s; | |
while(cin>>s){ | |
int a=0,b=0; | |
for(int i=0;i<s.length();i++){ | |
if(i%2==0) | |
a+=s[i]-'0'; | |
else | |
b+=s[i]-'0'; | |
} | |
cout<<abs(a-b)<<endl; | |
} | |
return 0; | |
} |