標題:
c290: APCS 2017-0304-1秘密差
[打印本頁]
作者:
ray
時間:
2020-7-18 10:04
標題:
c290: APCS 2017-0304-1秘密差
https://zerojudge.tw/ShowProblem?problemid=c290
作者:
陳泓瑜
時間:
2020-7-18 10:41
#include <iostream>
#include<string>
using namespace std;
int main()
{
int x=0, y=0;
string s;
cin>>s;
for(int i = 0; i < s.length(); i++)
{
if(i%2==0)
{
y+=s[i]-48;
}
else
{
x+=s[i]-48;
}
}
if(x-y<0)
{
cout<<-(x-y);
}
else
{
cout<<(x-y);
}
return 0;
}
複製代碼
作者:
李知易
時間:
2020-7-18 10:41
#include <string>
#include <iostream>
using namespace std;
int main()
{
string str;
int e, o, r;
e = o = 0;
cin>>str;
for(int i = 0; i < str.length(); i += 2)
{
o += (str[i]-48);
}
for(int i = 1; i < str.length(); i += 2)
{
e += (str[i]-48);
}
if(e > o)
{
r = e - o;
}
else
r = o - e;
cout<<r<<endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2