C++编程入门--No.7

输出特殊图案,请在c环境中运行,看一看,Very Beautiful!
1.程序分析:字符共有256个。不同字符,图形不一样。
2.程序源代码:

#include "stdio.h" 
main() 
{ 
char a=176,b=219; 
printf("%c%c%c%c%c
",b,a,a,a,b); 
printf("%c%c%c%c%c
",a,b,a,b,a); 
printf("%c%c%c%c%c
",a,a,b,a,a); 
printf("%c%c%c%c%c
",a,b,a,b,a); 
printf("%c%c%c%c%c
",b,a,a,a,b);} 

原文地址:https://www.cnblogs.com/lunatic-talent/p/12798303.html