题解 2182: [编程入门]打印图案

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

打印图案--简单

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){          cout << "  *" << endl;   ……

printf函数直接打印图案

摘要:解题思路:本来打算使用for循环输出的,但是发现可以直接打印出来,故直接打印即可。注意事项:注意printf函数要引用头文件stdio.h 参考代码:#include<stdio.h> int ma……

[编程入门]打印图案

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    cout<<"  *\n * *\n*****";  ……

[编程入门]打印图案

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;int main(){……

简单输出易懂打印图案

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    printf("  *\n");    printf(" * *\n");    printf("****……