首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
truckin专题
hdu-1037-Keep on Truckin'
#include<stdio.h> int main() { int a,b,c,t; while(scanf("%d%d%d",&a,&b,&c)!=EOF) { t=0; a=a<b?a:b; a=a<c?a:c; if(a<168) { t=1; printf("CRASH %d\n",a); } if(t==0
阅读更多...
HDU Keep on Truckin'
题目传送门:http://acm.hdu.edu.cn/showproblem.php?pid=1037 本题英文阅读理解题目。 #include<stdio.h>#include<string.h>#include<algorithm>//#define LOCALusing namespace std;int main(){#ifdef LOCALfreopen("input.t
阅读更多...