zoj 2186 Keep on Truckin'(大水~第一个C++程序~)

 题目很扯淡,就比个大小,比168的就输出(输出第一个比168大或相等的)CRASH X,没有的就输出NO CRASH。

 

这么大的水题,写在这是因为这是我第一个用C++写的程序哦~~~嘻嘻~

 

想想第一个用C写的应该是书上的HELLO WORLD吧,嘻嘻~

 

学习了下const定义常量~

 

 

#include <iostream> using namespace std; const int height = 168; int main(void) { int hei[3],i,y = 0; for( i=0; i<3; i++) cin>>hei[i]; for( i=0; i<3; i++) if( hei[i] <= height) { cout<<"CRASH "<<hei[i]; y = 1; break; } if( y == 0 ) cout<<"NO CRASH"; system("pause"); return 0; }

你可能感兴趣的:(zoj 2186 Keep on Truckin'(大水~第一个C++程序~))