7-8 超速判断 (10 分) (C语言实现)
程序员文章站
2022-06-08 12:55:09
...
题目:
思路:
按照题目敲,没有什么难度;(4.5min)
代码:
#include<stdio.h>
int main()
{
int s;
scanf("%d",&s);
if(s>60)printf("Speed: %d - Speeding",s);
else printf("Speed: %d - OK");
return 0;
}