3

我想编写一个程序来使用星号(*)绘制 X 字母的形状

#include "stdafx.h"
#include <iostream>
using namespace std;
int main(int argc, char* argv[]){
  int i, j;

  for(i = 1; i <= 9; i++){
    for(j = 1; j <= 12; j++){
      if(i == j){
        cout << "***";
      }else{
        cout << " ";
      }
    }
    cout<< endl;
  }

  return 0;
}

我对编程很陌生

我只做了 (\) 我怎样才能做整个 X

***------***
-***----***-
--***--***--
---******---
--***--***--
-***----***-
***------***  

这就是我到目前为止所做的

include "stdafx.h"
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
int i, d, a=1,b=12,c;
for(i = 1; i <= 6; i++)
{
for (d=1; d<i;d++)  {cout <<" ";}
cout<<"***";
for (c=a+1; c<b;c++) {cout <<" ";}
{cout<<"***";}
for(b=12-i;b<i;b++) 
{cout<<"***";}
cout<<endl;
a++;
}
return 0;
}       

我将 (\//) 的顶部分为三个部分 [space][ ][space][ ]

4

8 回答 8

3

我在java中编写了以下函数/方法。您可以将其转换为 c++;

public static void printX(int x) {
    char[] chars = new char[x];
    for (int i = 0; i < x; i++) {
        chars[i] = '*';
        chars[x - 1 - i] = '*';
        for (int j = 0; j < x; j++) {
            if (j == i || j == (x - 1 - i)) {
                continue;
            }
            chars[j] = ' ';
        }
        System.out.println(new String(chars));
    }

}

如果将上述函数/方法称为 printX(5); 输出大小为 5x5 并包含 X 字符。

*   *
 * * 
  *  
 * * 
*   *
于 2012-04-10T11:43:46.297 回答
1
**** ****
 *** ***
  ** **
   * *
  ** **
 *** ***
**** ****

首先,请原谅我非常不均匀的 X。对于您作为初学者,我会给出一个算法供您思考,而不是用勺子喂代码。

  • 解释器不知道如何回到已经打印的行。因此,您必须在循环的一次迭代中绘制 X 的两侧。

  • 之后你减少你的星数(星--)并画线#2。

  • 当你的星星为0时,重复直到中间标记。

  • 当您的代码看到星星为 0 时,则从相同的循环开始,但这次是每次迭代中的 star++。

  • 这一直重复到星星的起始计数,在我的例子中是 4。

如果有任何问题,您可以在网站上发布您的代码 :)

于 2012-04-10T10:20:43.633 回答
0
int n=11,i=0,k=0,j=0;
for(i=0;i<n;i++)
{
if(i<(n/2)) 
 {
    cout<<endl;
    for(j=0;j<i;j++)
    {
        cout<<" ";
    }
    cout<<"*";
    for(k=n/2;k>i;k--)
    {
        cout<<"  ";
    }
    cout<<"*";
 }
else
 {
    cout<<endl;
    for(k=n-1;k>i;k--)
    {
        cout<<" ";
    }
    cout<<"*";
    for(j=n/2;j<i;j++)
    {
        cout<<"  ";
    }
    cout<<"*";
 }  
}
于 2014-09-24T12:44:54.443 回答
0

我在 2 年前写的解决方案(当时我还在学习):

  • 制作一个行列数组,例如char screen[80][25];
  • 通过将所有条目设置为来清除它' '
  • 通过设置在 x,y 处“画一个点”screen[x][y]='*';
  • 完成后,通过调用2080 次来渲染整体。(人物 2000 次和 80 次)screen[80][25]coutendl

就您而言,您知道如何绘制\. 你可以很容易地适应这一点。但是使用我的方法,您可以/在同一个screen数组中绘制 a 。当你完成后,你有一个重叠/\在最后一步:X

我使用这种方法是因为我们必须画一个圆圈,这真的很难。是的,现在我可能会使用std::vector<std::string> screen但当时屏幕真的是 80x25 :)

于 2012-04-10T11:16:09.007 回答
0

您应动态评估每行中的间距区域。在纸上手动绘制所需的形状并尝试创建函数,该函数将行号作为参数并返回特定行中所需的空格量。例如:

*   *
 * * 
  *
 * *
*   *

每行中的空格数等于:

0 [*] 3 [*]
1 [*] 1 [*]
2 [*] 
1 [*] 1 [*]
0 [*] 3 [*]

请注意,在每一行内,您需要两个循环:第一个循环用于初始空间和中间空间。

于 2012-04-10T10:22:01.950 回答
0
#include<iostream>
using namespace std;
int main()
{
    int i, j;
    for(i = 1;i<= 5;i++)
    {
        for(j = 1;j<= 5;j++)
        {
            if((i == j)||(j==(5+1)-i))
            {
                cout << "*";
            }
            else{   
                cout << " ";
            }
        }
        cout<< endl;
    }
    system("pause");
}
于 2015-04-26T13:45:57.510 回答
0
#include "stdafx.h"
#include <iostream>

using namespace std;

int main(int argc, char* argv[])
{
int  i, d, a=1,b=12,c ,e=1;
        for(i = 1; i <= 6; i++)
            {
                for (d=1; d<i;d++) {cout <<" ";}
                cout<<"***";
                for (c=a+1; c<b;c++) {cout <<" ";}
                {cout<<"***";}
                for(b=12-i;b<i;b++) 
                {cout<<"***";}
                cout<<endl;
                a++;
        }
for( i = 1; i <= 3; i++)
        {
            for ( d=6; d>i;d--) {cout <<" ";}
            cout<<"***";
            for (c=0; c<e-1;c++) {cout <<"  ";}
            {cout<<"***";}
            cout<<endl;
            e++;
    }

return 0;
}   
于 2012-04-11T08:31:39.867 回答
-1
#include "stdafx.h"
#include <iostream>
using namespace std;;


int _tmain(int argc, _TCHAR* argv[])
{
    int i,k,j;
    for (i=1;i<8;i++)
    {
        for (int k=0;k<i;k++)
        {
            cout<<" ";
        }
        cout<<"*";
        for (int k=8;k>i;k--)
        {
            cout<<"  ";
        }
        cout<<"*";
        cout<<endl;
    }
    for (i=1;i<8;i++)
    {
        for (int k=8;k>i;k--)
        {
            cout<<" ";
        }
        cout<<"*";

        for (int k=0;k<i;k++)
        {
            cout<<"  ";
        }
        cout<<" *";
        cout<<endl;
    }

    system("Pause");
    return 0;
}
于 2017-08-16T06:01:08.643 回答