第一次写成功的程序,大家看看能不能改简单点
前几天看到一个题目*
* *
* * *
* * * *
* * *
* *
*
小弟自己写了个程序,这是小弟写成功的第一个,不过还不完善,大家看看什么地方能改简单点,还有只支持单的双的有点位移
#include<iostream>
using namespace std;
void main()
{
int n;
cout<<"please enter the value of n:";
cin>>n;
for(int i=0;i<=n;i++)
{
for(int j=0;j<n;j++)
{
if(i<=(n/2+1))
{
if (j>=(n/2-i)&&j<=(n/2+i))
{
if (i%2==0&&j%2==0||i%2!=0&&j%2!=0)
cout<<"*";
else
cout<<" ";}
else
cout<<" ";}
else if(i>(n/2+1))
{
if (j>=(n/2-(n-i))&&j<=(n/2+(n-i)))
{
if (i%2==0&&j%2==0||i%2!=0&&j%2!=0)
cout<<"*";
else
cout<<" ";}
else
cout<<" ";}
}
cout<<endl;} }
感觉程序太复杂了,有没有大哥给个简单点的程序
using namespace std;
void main()
{
int n;
cout<<"please enter the value of n:";
cin>>n;
for(int i=0;i<=n;i++)
{
for(int j=0;j<n;j++)
{
if(i<=(n/2+1))
{
if (j>=(n/2-i)&&j<=(n/2+i))
{
if (i%2==0&&j%2==0||i%2!=0&&j%2!=0)
cout<<"*";
else
cout<<" ";}
else
cout<<" ";}
else if(i>(n/2+1))
{
if (j>=(n/2-(n-i))&&j<=(n/2+(n-i)))
{
if (i%2==0&&j%2==0||i%2!=0&&j%2!=0)
cout<<"*";
else
cout<<" ";}
else
cout<<" ";}
}
cout<<endl;} }
感觉程序太复杂了,有没有大哥给个简单点的程序
[此贴子已经被作者于2007-9-21 14:09:48编辑过]