c++用循环输出以下图案 **** **** **** ****
时间: 2023-11-20 17:06:17 浏览: 105
以下是三种不同的C++循环输出图案的方法:
1. 直接打印
```
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("****\n");
printf("****\n");
printf("****\n");
printf("****\n");
system("pause");
return 0;
}
```
2. for循环嵌套
```
#include <iostream>
using namespace std;
int main() {
for(int i=0;i<4;i++) {
for(int j=0;j<4;j++) {
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
```
3. while循环嵌套
```
#include <stdio.h>
#include <Windows.h>
#include <stdlib.h>
int main() {
int a ,b;
char x;
x=getchar();
a = 1;
while (a <= 4) {
b = 1;
while (b <= 4) {
printf("%c",x);
b++;
}
printf("\n");
a++;
}
return 0;
}
```
阅读全文