解题思路:
参考代码:
#include <iostream>
using namespace std;
#include <iomanip> //包含fixed和setprecision
int main () {
int x;
float y;
cin >> x;
if (x < 1) {
y = x;
} else if (1 <= x && x < 10) {
y = 2 * x - 1;
} else {
y = 3 * x - 11;
}
//fixed 和 setprecision用来控制小数点的个数。
cout << fixed << setprecision(2) << y << endl;
return 0;
}
0.0分
0 人评分
弟弟的作业 (C++代码)浏览:1342 |
C语言训练-排序问题<1> (C++代码)浏览:632 |
简单的a+b (C语言代码)浏览:560 |
三角形 (C++代码)递归(存在大量重复计算,容易出现时间超限)浏览:836 |
模拟计算器 (C++代码)浏览:885 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:654 |
C二级辅导-同因查找 (C语言代码)浏览:618 |
整数平均值 (C语言代码)浏览:856 |
1231题解(注意理解“输入多个测试实例”)浏览:830 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:658 |