本题应该是迄今为止最为简单的一道题,只有一组输入,输出也简单....
/******************************************
杭电acm 1037题 已AC
*****************************************/
#include "iostream" using namespace std; int main(void)
{
int height[];
int wheel=;
cin>>height[]>>height[]>>height[];
for(int i=;i<;i++)
{
if(wheel>height[i])
{
cout<<"CRASH "<<height[i]<<endl;
break;
}
else if(i==)
cout<<"NO CRASH"<<endl;
else continue;
}
return ;
}
虽然比较简单,但还是记录下来,从简单做起...