- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我很难用 Java 完成学校练习。我们被要求打印出这个图案:
+++++++++++++++++++++++++++++++++++++++++++++
+++++++ +++++++ +++++++ +++++++ +++++++
+++++ +++++ +++++ +++++ +++++
+++ +++ +++ +++ +++
+ + + + +
+++ +++ +++ +++ +++
+++++ +++++ +++++ +++++ +++++
+++++++ +++++++ +++++++ +++++++ +++++++
+++++++++++++++++++++++++++++++++++++++++++++
+++++++ +++++++ +++++++ +++++++ +++++++
+++++ +++++ +++++ +++++ +++++
+++ +++ +++ +++ +++
+ + + + +
+++ +++ +++ +++ +++
+++++ +++++ +++++ +++++ +++++
+++++++ +++++++ +++++++ +++++++ +++++++
+++++++++++++++++++++++++++++++++++++++++++++
+++++++ +++++++ +++++++ +++++++ +++++++
+++++ +++++ +++++ +++++ +++++
+++ +++ +++ +++ +++
+ + + + +
+++ +++ +++ +++ +++
+++++ +++++ +++++ +++++ +++++
+++++++ +++++++ +++++++ +++++++ +++++++
+++++++++++++++++++++++++++++++++++++++++++++
我可以做三角形或沙漏形状,但我无法让它水平重复。
这是我目前所拥有的:
int a = 9;
char b = '+';
char c = ' ';
int i_buffer = a;
int i_leer = 1;
for (int i = 0; i < a; i++) {
for (int z = i_buffer; z > 0; z--)
System.out.print(b);
System.out.println();
i_buffer = i_buffer - 2;
if (i_buffer < 0)
break;
for (int z = i_leer++; z > 0; z--)
System.out.print(c);
}
最佳答案
这是一个解决方案,可以根据需要在 x 和 y 维度上为每个尺寸创建此图案。实际发生的情况被写为评论。
public static void main(String[] args) {
test();
}
public static void test() {
// Print it three times under each other, 5 times next to each other
// With a size of 9 plus
printHourglass(3,5,9);
}
private static void printHourglass(int column, int times, int size) {
for(int i = 0;i<column;++i) {
// If it is the first iteration print the first line, otherwhise
// Leave out the first only plus line
printHourglassRow(times, size, i == 0 ? 0 : 1);
}
}
private static void printHourglassRow(int times, int size, int start) {
// If it is not the first hourglass don´t print the first only plus row
int printableStars = start == 0 ? size : size-2;
int printableSpaces = start == 0 ? 0 : 1;
// If the size is even we need to print one row less
size = size % 2 == 0 ? size-1:size;
for(int i = start;i<size;++i) {
// Decides if we should print whitespaces or spaces first.
// only The first and last row start with the plus
int mode = (i == size || i == 0) ? 1 : 0;
//System.out.println(mode);
//System.out.println(printableStars);
// We are printing each column, we start with column 0
int column = 0;
// We print until we did reach the last column.
while(column<times*size) {
// If we are in print plus mode the next thing we print
// will be a space, so switch mode and print stars as long as we should
if(mode == 1) {
mode = 0;
for(int j = 0;j<printableStars;++j) {
printPlus();
++column;
}
// If we are in print whitespace mode the next thing we print
// will be a space, so switch mode and print whitespaces as long as we should
} else {
mode = 1;
// If we reached the second hourglass (column > size/2)
// Then we need to print twice as much whitespaces
int sizeHalf = size % 2 == 0? size/2 : size/2+1;
for(int j = 0;column > sizeHalf ? j<printableSpaces*2:j<printableSpaces;++j) {
printSpace();
++column;
}
}
}
// We are not in the middle of the hourglass so
// We print two stars less and one whitespace more.
if(size - 2*i > 2) {
++printableSpaces;
printableStars -= 2;
// If we are reaching the point where we are in the middle
// Of the houreglass we need to print one whitespace less
// and two plus more.
} else {
--printableSpaces;
printableStars += 2;
}
// Linebreak
System.out.println();
}
}
private static void printPlus() {
System.out.print("+");
}
private static void printSpace() {
System.out.print(" ");
}
关于java - 使用 "for"循环在 java 中打印出菱形图案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33545825/
我正在使用自定义的 uitableviewcell,并尝试重新创建一张活页纸作为背景。由于每个单元格都会根据文本量而增长,因此我需要为每个单元格的背景使用一个图案。但我对这些黑线有疑问,这让我发疯!
我已经解决这个问题 2 个小时了,似乎无法弄清楚如何按模式计数。 图案: 1-1-1 1-1-2 1-2-1 1-2-2 2-1-1 2-1-2 2-2-1 2-2-2 等等…… 最佳答案 我认为最简
我想尝试创建一个学习象棋应用程序作为学校项目。我的第一个计划是简单地让这个人工智能与自己进行较量,但要真正展示它是否成功,它需要能够展示它的进展情况。为了做到这一点,我希望它能够在 chess.com
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎偏离主题,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或 include a mini
以下函数返回什么? (就意义而言) int f(int n){ if(n == 0) return 0; else return n % 2 + f(n / 2) } 尝试运行代码,但
我有一个专栏A3:A71我希望填充值 =COUNTIF(B3:B71,B3) 第二个参数随每个单元格递增。 显然我不想每次都复制这个函数,所以我希望填充句柄能帮助我。然而,尽管它正确地增加了 COUN
我需要重复 svg 在水平方向 . 我的意思是,svg 比图案大,所以我需要它在剩下的任何空间上水平重复。 我希望主要图案出现在中心,这正是现在正在发生的事情。我只需要让它在两边都重复。 现在,我只
我需要重复 svg 在水平方向 . 我的意思是,svg 比图案大,所以我需要它在剩下的任何空间上水平重复。 我希望主要图案出现在中心,这正是现在正在发生的事情。我只需要让它在两边都重复。 现在,我只
请帮我完成作业。我想使用循环 C 语言生成这样的模式 X X X XXX XXXXX XXX X X X XXXXX X X X X X X XXXXX X XX X X X X X
c# 3.0 为我们提供了带有编译器生成的支持字段的 getter 和 setter - 这真的很棒,但很多时候您仍然需要使用支持字段。 在一个完美的世界(意见)中,你可以做类似的事情 class M
我正在创建一个 wordpress 主题,我正在尝试创建一个导航栏,其中每个 li 都有不同的背景颜色(例如,红色,然后是绿色,然后是蓝色)。然后在使用前三种颜色后,它会再次重复使用。 例如:
是否可以将 .svg 图案作为背景图像,svg 图案应调整为窗口宽度和高度。 最佳答案 这是可能的,但浏览器支持有限。 Webkit 往往具有最好的 SVG 支持,而 IE 最差。您可以使用 CSS
如何打印反Z图案? 普通 Z 模式的代码: int main() { int n; printf("Enter number of rows: "); scanf("%d", &n); for (in
我的图片中有重复的图案。我想根据相似的模式找到相似的图像。 图案由十字形、三角形、正方形组成,它们组合在一起形成由这些“原始形状”构成的更复杂的结构。例如,想象一个由三角形或六边形等组成的十字架。 这
是否可以在 SVG 填充中模拟以下 CSS? background-image: url(/* URL */); background-position: 50%; background-size:
这个问题在这里已经有了答案: How to make SVG image pattern fill move with object? (4 个答案) 关闭 1 年前。 我创建了这里看到的 svg
问题:存在关联键的表列表。有必要为每个表实现 CRUD + 一些关于表细节的功能(分页等)。麻烦:在每个表的每个功能实现中重复了大约 50% 的代码。问题:关于语言细节、优化/重构/使用类似代码模式的
尝试绘制在 x 轴上重复的背景。然而,图像放错了位置,当我调整窗口大小时,位于图案中的 View 将开始“移动”。 我做错了什么?目前正在做以下工作: [[NSColor colorWithPatte
Javascript 问题。 关于模式或表达,可能是重复的问题。 您可以使用下面的三个来获得一个对象。结果对象的工作原理相同。 当您使用繁重的 JavaScript Web 应用程序时,哪种模式最好?
是否可以使用 CSS 创建以下效果。我在 HTML 中只有一个 H2 元素,我对页面的 HTML 没有任何控制。我只能更改 CSS。 我用 :before 和 :after 尝试过,但到目前为止没有成
我是一名优秀的程序员,十分优秀!