我刚刚开始学习c ++,对此我是一个完全的菜鸟。对于家庭作业,我遇到一个问题“制作程序,将显示类似'aBBBaBBBaBBB'的消息。'B'的数量与开头提供的数字有关。在B的行前面必须有一个字母'a'“(波兰语翻译)。为了展示我的先进程度,我刚刚开始学习“ for”功能。
#include <iostream>
using namespace std;
int main()
{
int b, x;
cin>> b;
for(x=0; x<=b; x++)
{
for(x=1; x<=b; x++)
{
cout << "a";
for(x=1; x<=b; x++)
{
cout << "B";
}
}
}
return 0;
}
输入:4
输出:aBBBBaBBBBaBBBBaBBBB
答案 0 :(得分:1)
#include <iostream>
using namespace std;
int main()
{
int b;
cin>> b;
for(int x = 0; x < b; x++)
{
cout << "a";
for(int x = 0; x < b; x++)
{
cout << "B";
}
}
return 0;
}