#29609: C++紀錄


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a149. 乘乘樂 | From: [182.233.207.92] | 發表日期 : 2022-03-14 02:19

 線上C++版本與本身邊義器版本不同,紀錄

#include <iostream>

#include <string>

#include <sstream>

#include <cmath>

using namespace std;

int main()

{

string x;

int y[1000];

while (cin >> x)

{

int z=1;

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

{

y[i] = (int)x[i] - 48;

}

if (x.length() == 1)

{

z = 0;

}

else

{

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

{

z = z * y[i];

}

}

 

if (z == 0)

{

 

}

else 

{

cout << z << endl;

}

}

}

 

 
ZeroJudge Forum