作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想制作一个程序,用户输入矩形的高度和宽度,但交替使用 *
和 +
。这是我的代码:
class Parallelogram {
public static void main(String[] args) {
Scanner x = new Scanner(System.in);
int w;
int h;
System.out.print("Enter the Width ");
w = x.nextInt();
System.out.print("Enter the height ");
h = x.nextInt();
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
输出:
MY PROGRAM : What i want my program to look
Enter width : 4 Enter width : 4
Enter height : 5 Enter height : 5
**** ****
**** ++++
**** ****
**** ++++
**** ****
最佳答案
只需在 for 循环中添加一个模数即可。
此代码将为您解决问题:
public static void main(String[] args) {
Scanner x = new Scanner(System.in);
int w;
int h;
System.out.print("Enter the Width ");
w = x.nextInt();
System.out.print("Enter the height ");
h = x.nextInt();
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (i % 2 == 0) {
System.out.print("*");
} else {
System.out.print("+");
}
}
System.out.println();
}
}
关于java - For 循环星号和加号(矩形形式),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32743455/
我是一名优秀的程序员,十分优秀!