gpt4 book ai didi

java - 打印图形函数

转载 作者:行者123 更新时间:2023-12-02 03:44:42 25 4
gpt4 key购买 nike

我需要创建一个名为“PrintGraph”的空函数,它接受一个整数参数并打印(不返回)典型的笛卡尔图的样子,并且应该适用于任何给定的大小,但出于测试目的,我们可以假设它永远不会大于 7。我如何开始这样的事情?

最佳答案

如果您尝试创建破折号图,我建议采用数字 n 并打印 (""n 次,然后 "|") n 次,在中间跳过一行,然后打印 "-"2n 次,然后重复第一个过程以创建负 y 轴。

示例:

    //initialize the value for n below
int n;
for (int i=0;i<=n;i++){
for (int a=0;a<=n;a++){
System.out.print(" ");
}
System.out.println("|");
}
for (int b=o;b<=((2*n)+1);b++){
System.out.print("-");
}
System.out.println();
for (int c=0;c<=n;c++){
for (int d=0;d<=n;d++){
System.out.print(" ");
}
System.out.println("|");
}

希望这会有所帮助!

关于java - 打印图形函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56814917/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com