#34769: C++解


130433@csc.pjhs.tyc.edu.tw (d4c)

學校 : 桃園縣立平鎮高級中學
編號 : 231090
來源 : [163.30.123.25]
最後登入時間 :
2023-09-19 08:48:43
c290. APCS 2017-0304-1秘密差 -- 2017年3月APCS | From: [101.137.74.81] | 發表日期 : 2023-04-15 00:54

 

#include <iostream>

using namespace std;

int main() {

    int x,y,z,a,b,b1,u;

    cin >> x;

    cout << endl;

    y=x;

    while(x>0)

    {

        x/=10;

        z++;

    }

    for(int i=1;i<=z;i++)

    {

        u=y%10;

        if(i%2==0)

        b+=u;

        else

        b1+=u;

        y/=10;

    }

    a=b-b1;

    if(a<0)

    a*=-1;

    cout << a << endl;;

    return 0;

}

 
ZeroJudge Forum