#11445: C++ AC 不用陣列 解法


Lauman971226 (Lauman)

學校 : 迦密中學
編號 : 50803
來源 : [59.152.216.131]
最後登入時間 :
2017-04-11 09:57:36
a065. 提款卡密碼 -- 板橋高中教學題 | From: [61.244.139.154] | 發表日期 : 2016-10-17 18:48

#include <iostream>
#include <string>
#include <math.h>

using namespace std;

int main(){

    string str;
    int n;


    while(cin >> str){
        for(int i = 0; i < str.length() - 1; i++){
            n = str[i] - str[i+1];
            cout << abs(n);
        }
        cout << endl;
    }


    return 0;

 
ZeroJudge Forum