#30861: 有點簡單XD(注意! 有答案!⚠)


jasonchiang1128@gmail.com (江杰恩)

學校 : 康橋雙語學校
編號 : 181063
來源 : [118.168.51.164]
最後登入時間 :
2023-02-12 14:42:55
a799. 正值國 | From: [118.168.28.201] | 發表日期 : 2022-06-16 22:06

直接獻上答案XD:

#include<cstdio>
#include<string>
#include<iostream>
#include<stdlib.h>
using namespace std;
int main ()
{
    string input;
    cin >> input;
    int i;
    if(input.at(0) == '-')
    {
        i = 1;
        while (i < input.length())
        {
            cout << input.at(i);
            i++;
        }
    } else {
        cout << input << endl;
    }
}

 
ZeroJudge Forum