题解 1812: [编程基础]输入输出练习之输出图案

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

筛选

普通解题方法

摘要:解题思路:没什么好想的注意事项:注意空格数就行了。参考代码:#include<stdio.h>int main(){char c;scanf ("%c",&c ); printf("  %c  \n"……

简单输出易懂输出图案

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char c;    scanf("%c", &c);    printf("  %c", c);    ……

输出图案,C++

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