51Testing软件测试论坛
标题:
为啥有一个样本无法通过?
[打印本页]
作者:
测试积点老人
时间:
2022-1-27 11:04
标题:
为啥有一个样本无法通过?
我的代码:
#include<iostream>
using namespace std;
int main()
{
string str[10]={"ling","yi","er","san","si","wu","liu","qi","ba","jiu"};
int sum=0,i=1;
char c;
while(i)
{
c=getchar();
if(c<48||c>57)
{
if(i==1)
{
if(c==' ')
continue;
else
return 0;
}
else
break;
}
i++;
sum+=c-48;
}
i=1;
while(sum/i/10)
i*=10;
do
{
cout<<str[sum/i];
if(i>1)
cout<<' ';
else
cout<<endl;
sum-=sum/i*i;
i/=10;
}while(sum);
return 0;
}
复制代码
题目:
[attach]136323[/attach]
作者:
郭小贱
时间:
2022-1-28 09:58
浙大高材生啊..
作者:
kallinr
时间:
2022-1-28 10:25
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2