解题思路:
用if,else
注意事项:
else后面不加条件
参考代码:
#include<iostream>
using namespace std;
int main()
{
int x;
cin >> x;
if(x<1)
{
cout << x;
}
else if(1<=x && x<10)
{
cout << 2*x-1;
}
else
{
cout << 3*x-11;
}
return 0;
}
解题思路:
用if,else
注意事项:
else后面不加条件,第一个代码设了y,第二个没设
参考代码2:
#include<iostream>
using namespace std;
int main()
{
int x,y;
cin >> x;
if(x<1)
{
y=x;
cout << y;
}
else if(x>=1 && x<10)
{
y=2*x-1;
cout << x;
}
else
{
y=3*x-11;
cout << y;
}
return 0;
}
0.0分
2 人评分
C语言训练-斐波纳契数列 (C语言代码)浏览:826 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:672 |
简单的a+b (C语言代码)浏览:641 |
WU-printf基础练习2 (C++代码)浏览:2061 |
【矩阵】 (C++代码)浏览:999 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:268 |
sizeof的大作用 (C语言代码)浏览:1592 |
核桃的数量 (C语言代码)浏览:726 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:523 |
剪刀石头布 (C语言代码)浏览:1519 |