標題:
APCS-秘密差
[打印本頁]
作者:
李知易
時間:
6 天前 10:00
標題:
APCS-秘密差
[attach]20593[/attach]
作者:
高鋐鈞
時間:
6 天前 11:33
#include<bits/stdc++.h>
using namespace std;
int main()
{
string a;
cin>>a;
int x=0,y=0;
for(int i=0;i<a.length();i++){
char c=a[i]-'0';
if(i%2){
x+=c;
}else{
y+=c;
}
}
cout<<abs(x-y);
return 0;
}
複製代碼
作者:
洪承廷
時間:
6 天前 21:00
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str;
cin>>str;
int a=str.length();
int n1=0,n2=0;
for(int i=0;i<a;i++)
{
if(i%2==0)
n1+=(str[i]-48);
else
n2+=(str[i]-48);
}
cout<<abs(n1-n2);
return 0;
}
複製代碼
作者:
高昀昊
時間:
4 天前 15:54
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
long long x=1,sum=0;
string a;
getline(cin,a);
for(int i=0;i<a.length();i++){
sum+=(a[i]-48)*x;
x*=-1;
}
cout<<abs(sum);
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2