【郑轻】[1749]Forceast!

文章字数:217

问题描述

问题分析

期望问题
刚开始没大看懂……
看懂后……
呃……

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#include <stdio.h>
#include <string.h>
int main() {
	double a,b,c,d,x;
	scanf("%lf %lf %lf %lf",&a,&b,&c,&d);
	x=4*a+3*b+2*c+1*d;
	if(x>=3)
		printf("金刚巨何时带我飞!\n");
	else if(x>=2&&x<3)
		printf("仰慕金刚巨!\n");
	else if(x>=1&&x<2)
		printf("调整好心态就可以了!\n");
	else
		printf("小金刚赶紧去刷题,不要再水群了!\n");
	return 0;
}

题目地址:【郑轻】[1749]Forceast!

该内容采用 CC BY-NC-SA 4.0 许可协议。

如果对您有帮助或存在意见建议,欢迎在下方评论交流。

加载中...