新微赢技术网

标题: [求助]这个程序怎么写 [打印本页]

作者: 左手的云    时间: 2009-11-4 00:48
标题: [求助]这个程序怎么写
怎么用C语言编这个图形
*
* *
* *
* *
* *
* *
* *
* *
*
谢谢了
作者: Nick    时间: 2009-11-4 00:48
以前贴有
需要的话自己查
是lizard99问的
作者: 陈君    时间: 2009-11-4 00:48
#include<iostream>
using namespace std;
main()
{
char t[9][9];
int i,j,n=0;
for(i=0;i<9;i++)
for(j=0;j<9;j++)
if(i+j==4||i+j==12||i-j==4||j-i==4)
{t[i][j]='*';}
else {t[i][j]=' ';}
for(i=0;i<9;i++)
for(j=0;j<9;j++)
{cout<<t[i][j];
n++;
if(n%9==0)
cout<<"\n";
}
system("pause");
return 0;
}
应该是这样的




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2