hdoj1037

来源:互联网 发布:齐鲁大学生软件大赛 编辑:程序博客网 时间:2024/05/29 23:24

链接:
http://acm.hdu.edu.cn/showproblem.php?pid=1037

//水题#include <iostream>using namespace std;int main(){ int a, b, c, min; while (cin >> a >> b >> c) {  min = a;  if (b < min) min = b;  if (c < min) min = c;  if (min > 168) cout << "NO CRASH" << endl;  else cout << "CRASH " << min << endl; } return 0;}


 

原创粉丝点击