PTA乙级题 1086. 就不告诉你 (15 分)
特判一下前导零就好了
#include <iostream>
using namespace std;
int main()
{
int a, b;
scanf("%d%d", &a, &b);
while (a % 10 == 0)
a /= 10;
while (b % 10 == 0)
b /= 10;
int ans = a * b;
if (ans == 0)
printf("0");
bool f = false;//如果是true就输出
while (ans)
{
if (ans % 10 != 0)
f = true;//判断第一个不是0的数字就输出
if (f)
printf("%d", ans % 10);
ans /= 10;
}
}