#29595: C++紀錄


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a065. 提款卡密碼 -- 板橋高中教學題 | From: [182.233.207.92] | 發表日期 : 2022-03-13 13:54

#include <iostream>

#include <string>

#include <sstream>

using namespace std;

int main()

{

string x;

while (cin >> x)

{

int a=0,b=0;

string y,z;

stringstream temp;

for (int i = 0; i < x.length(); i++)

{

a = ((int)x[1 + i] - int(x[0 + i]));

a = abs(a); //絕對值

temp << a;

temp >> z;

y = y + z;

temp.str("");

temp.clear();

}

y.erase(y.length() - 2, 2);

cout << y << endl;

}

}

 

 
ZeroJudge Forum