求C++高手帮忙解决新手问题!!!!!!
1.编写单条C++语句,完成下述任务。a)采用cint>>,输入整型变量x。b)采用cin和>>,输入整型变量y。c)设置整型变量i为1。d)设置整型变量power为1....
1. 编写单条C++语句,完成下述任务。
a)
采用cint >>,输入整型变量x。
b) 采用cin和>>,输入整型变量y。
c)
设置整型变量i为1。
d) 设置整型变量power为1.
e)
变量power乘以变量x后,结果赋值给变量power。
f)
变量i前置方式自增1。
g) 判断变量i是否小于或等于变量y。
h) 采用cout和<<输出整型变量power。
2. else摇摆问题
在x等于9、y等于11和x等于11、y等于9这两种情况下,请说出下面程序段的输出。
a)
if ( x
< 10 )
if ( y > 10 )
cout << “*****” << endl;
else
cout << “#####” << endl;
cout << “$$$$$” << endl;
b) if ( x < 10 )
{
if ( y > 10 )
cout << “*****” << endl;
}
else
{
cout << “#####” << endl;
cout << “$$$$$” << endl;
}
3. else摇摆问题二
修改以下代码,以产生指定的输出。请使用正确的缩进格式。请注意,除了可以插入花括号之外,程序不得做任何其他改动,也有可能无须做任何修改。
if ( y == 8 )
if ( x == 5 )
cout << “@@@@@” << endl;
else
cout << “#####” << endl;
cout << “$$$$$” << endl;
cout << “&&&&&” << endl;
a)
假定x=5,y=8,产生的输出如下所示。
b) 假定x=5,y=8,产生的输出如下所示。
c)
假定x=5,y=8,产生的输出如下所示。
d) 假定x=5,y=7,产生的输出如下所示。注意,else之后的三条输出语句属于同一个语句块。
4. 编程
输入某学生的考试成绩,如果在90分以上,输出“优秀”;80~89分输出“良好”;70~79分输出“中等”;60~69分输出“及格”;60分以下输出“不及格”。
图片好像没有出来,这里补充一下
a)
b)
c)
d) 展开
a)
采用cint >>,输入整型变量x。
b) 采用cin和>>,输入整型变量y。
c)
设置整型变量i为1。
d) 设置整型变量power为1.
e)
变量power乘以变量x后,结果赋值给变量power。
f)
变量i前置方式自增1。
g) 判断变量i是否小于或等于变量y。
h) 采用cout和<<输出整型变量power。
2. else摇摆问题
在x等于9、y等于11和x等于11、y等于9这两种情况下,请说出下面程序段的输出。
a)
if ( x
< 10 )
if ( y > 10 )
cout << “*****” << endl;
else
cout << “#####” << endl;
cout << “$$$$$” << endl;
b) if ( x < 10 )
{
if ( y > 10 )
cout << “*****” << endl;
}
else
{
cout << “#####” << endl;
cout << “$$$$$” << endl;
}
3. else摇摆问题二
修改以下代码,以产生指定的输出。请使用正确的缩进格式。请注意,除了可以插入花括号之外,程序不得做任何其他改动,也有可能无须做任何修改。
if ( y == 8 )
if ( x == 5 )
cout << “@@@@@” << endl;
else
cout << “#####” << endl;
cout << “$$$$$” << endl;
cout << “&&&&&” << endl;
a)
假定x=5,y=8,产生的输出如下所示。
b) 假定x=5,y=8,产生的输出如下所示。
c)
假定x=5,y=8,产生的输出如下所示。
d) 假定x=5,y=7,产生的输出如下所示。注意,else之后的三条输出语句属于同一个语句块。
4. 编程
输入某学生的考试成绩,如果在90分以上,输出“优秀”;80~89分输出“良好”;70~79分输出“中等”;60~69分输出“及格”;60分以下输出“不及格”。
图片好像没有出来,这里补充一下
a)
b)
c)
d) 展开
1个回答
展开全部
1.
a) int x; cint >>x;
b) int y; cint >>y;
c) int i=1;
d) int power=1;
e) power = power * x;
f) i++;
g) if ( i<=y)
h) cout << power;
2.
a) 情况1输出
*****
$$$$$
情况2输出
$$$$$
b)
情况1输出
*****
情况2输出
#####
$$$$$
3.
a)
if ( y == 8 )
if ( x == 5 )
{
cout << “#####” << endl;
cout << “$$$$$” << endl;
cout << “&&&&&” << endl;
}
else
cout << “@@@@@” << endl;
b) 假定x=5,y=8,产生的输出如下所示。
if ( y == 8 )
if ( x == 5 )
cout << “@@@@@” << endl;
else
{
cout << “#####” << endl;
cout << “$$$$$” << endl;
cout << “&&&&&” << endl;
}
c)
if ( y == 8 )
{
if ( x == 5 )
cout << “@@@@@” << endl;
else
{
cout << “#####” << endl;
cout << “$$$$$” << endl;
}
cout << “&&&&&” << endl;
}
d)
if ( y == 8 )
{
cout << “#####” << endl;
}
else
{
if ( x == 5 )
cout << “@@@@@” << endl;
else
cout << “$$$$$” << endl;
cout << “&&&&&” << endl;
}
4. 编程
#include <iostream>
main()
{
int score;
cin << score;
if (score >=90)
cout << “优秀”;
else if (score>=80)
cout <<“良好”;
else if (score>=70)
cout <<“中等”;
else if(score>=60)
cout <<“及格”;
else
cout <<“不及格”;
return 0;
}
a) int x; cint >>x;
b) int y; cint >>y;
c) int i=1;
d) int power=1;
e) power = power * x;
f) i++;
g) if ( i<=y)
h) cout << power;
2.
a) 情况1输出
*****
$$$$$
情况2输出
$$$$$
b)
情况1输出
*****
情况2输出
#####
$$$$$
3.
a)
if ( y == 8 )
if ( x == 5 )
{
cout << “#####” << endl;
cout << “$$$$$” << endl;
cout << “&&&&&” << endl;
}
else
cout << “@@@@@” << endl;
b) 假定x=5,y=8,产生的输出如下所示。
if ( y == 8 )
if ( x == 5 )
cout << “@@@@@” << endl;
else
{
cout << “#####” << endl;
cout << “$$$$$” << endl;
cout << “&&&&&” << endl;
}
c)
if ( y == 8 )
{
if ( x == 5 )
cout << “@@@@@” << endl;
else
{
cout << “#####” << endl;
cout << “$$$$$” << endl;
}
cout << “&&&&&” << endl;
}
d)
if ( y == 8 )
{
cout << “#####” << endl;
}
else
{
if ( x == 5 )
cout << “@@@@@” << endl;
else
cout << “$$$$$” << endl;
cout << “&&&&&” << endl;
}
4. 编程
#include <iostream>
main()
{
int score;
cin << score;
if (score >=90)
cout << “优秀”;
else if (score>=80)
cout <<“良好”;
else if (score>=70)
cout <<“中等”;
else if(score>=60)
cout <<“及格”;
else
cout <<“不及格”;
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询