打印指定宽度的ASCII圆形

5

我试图更改以下代码,以便在半径为2时获得以下输出:

  *****
***   ***
**     **
***   ***
  *****

我快要疯了,希望有人能提供帮助!

public class Main {
    public static void main(String[] args) {
        // dist represents distance to the center
        double dist;
        double radius = 2;

        // for horizontal movement
        for (int i = 0; i <= 2 * radius; i++) {
            // for vertical movement
            for (int j = 0; j <= 2 * radius; j++) {
                dist = Math.sqrt(
                        (i - radius) * (i - radius) +
                        (j - radius) * (j - radius));

                // dist should be in the range (radius - 0.5)
                // and (radius + 0.5) to print stars(*)
                if (dist > radius - 0.5 && dist < radius + 0.5)
                    System.out.print("*");
                else
                    System.out.print(" ");
            }
            System.out.println("");
        }
    }
}
2个回答

4
输出结果呈椭圆形,因为字符的宽度和高度不同。想象一下一个像素不是正方形而是竖长方形的图像。我借用了@Prasanth Rajendran链接的代码版本,并进行了一些修改:
  1. 添加了lineWidth参数
  2. 添加了xScale参数,现在每行中相当于1/xScale个字符等于1个数据点
  3. 通过添加[0.5, 0.5]偏移量将字符位置移动到其中心
// function to print circle pattern 
static void printPattern(int radius, int lineWidth, double xScale)
{
    double hUnitsPerChar = 1 / xScale;
    double hChars = (2 * radius + lineWidth) / hUnitsPerChar;
    double vChars = 2 * radius + lineWidth;
    // dist represents distance to the center 
    double dist;
    double lineWidth_2 = (double)lineWidth / 2;
    double center = radius + lineWidth_2;
    // for vertical movement 
    for (int j = 0; j <= vChars - 1; j++)
    {
        double y = j + 0.5;
        // for horizontal movement 
        for (int i = 0; i <= hChars - 1; i++)
        {
            double x = (i + 0.5) * hUnitsPerChar;
            dist = Math.Sqrt(
                (x - center) * (x - center) +
                (y - center) * (y - center));

            // dist should be in the range  
            // (radius - lineWidth/2) and (radius + lineWidth/2)  
            // to print stars(*) 
            if (dist > radius - lineWidth_2 &&
                            dist < radius + lineWidth_2)
                Console.Write("*");
            else
                Console.Write(" ");
        }

        Console.WriteLine("");
    }
}
static void Main(string[] args)
{
    printPattern(2, 1, 2);
    printPattern(10, 3, 2);
}

现在的结果是这样的:
printPattern(2, 1, 2):

  ******
***    ***
**      **
***    ***
  ******

printPattern(10, 3, 2):

                **************
            **********************
         ****************************
      ***********            ***********
     ********                    ********
   ********                        ********
  *******                            *******
 *******                              *******
 ******                                ******
******                                  ******
******                                  ******
******                                  ******
******                                  ******
******                                  ******
 ******                                ******
 *******                              *******
  *******                            *******
   ********                        ********
     ********                    ********
      ***********            ***********
         ****************************
            **********************
                **************

他们在CMD中看起来更好:

enter image description here

希望您能将其翻译成

2

你可以将圆的边缘绘制在其内部,并表示圆的方程为:

double edge = (x*x + y*y) / (double) r - r;

如果半径r=2,线宽w=1,那么圆形看起来是这样的:
  ******  
****  ****
**      **
****  ****
  ******  
r=2,w=1.0

假设两个字符的宽度等于一个字符的高度。 在线试用!
// radius
int r = 12;
// line width
double w = 3;
// assume that the width of two characters
// is equal to the height of one character
for (int y = -r; y <= r; y++) {
    for (int x = -r; x <= r; x++) {
        double edge = (x*x + y*y) / (double) r - r;
        // edge is inside the circle
        if (edge > - w*4/3 && edge < 1) {
            System.out.print("**");
        } else {
            System.out.print("  ");
        }
    }
    System.out.println();
}
System.out.println("r="+r+",w="+w);

输出:

                  **************                  
              **********************              
          ******************************          
        **********              **********        
      ********                      ********      
    ********                          ********    
    ******                              ******    
  ******                                  ******  
  ******                                  ******  
******                                      ******
******                                      ******
******                                      ******
******                                      ******
******                                      ******
******                                      ******
******                                      ******
  ******                                  ******  
  ******                                  ******  
    ******                              ******    
    ********                          ********    
      ********                      ********      
        **********              **********        
          ******************************          
              **********************              
                  **************                  
r=12,w=3.0

另请参阅:
使用字符打印ASCII圆和轴
在控制台中打印多行ASCII动画


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接