参考代码:
import java.util.Scanner; public class Main public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int m = scanner.nextInt(); if (n != 0 && m != 0) { for (int i = 0; i < n * 2 + 1; i++) { if (i % 2 == 0) { for (int j = 0; j < m * 2 + 1; j++) { if (j % 2 == 0) { System.out.print("+"); } else { System.out.print("-"); } } System.out.println(); } else { for (int j = 0; j < m * 2 + 1; j++) { if (j % 2 == 0) { System.out.print("|"); } else { System.out.print(" "); } } System.out.println(); } } } } }
0.0分
4 人评分
WU-拆分位数 (C++代码)浏览:819 |
字符逆序 (C语言代码)浏览:645 |
P1000 (C语言代码)浏览:911 |
字符逆序 (C语言代码)浏览:506 |
sizeof的大作用 (C语言代码)浏览:1138 |
简单的a+b (C语言代码)浏览:1024 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:607 |
平方数问题,oj一直是wrong answer浏览:755 |
C二级辅导-阶乘数列 (C语言代码)浏览:1831 |
删除数组中的0元素 (C语言代码)浏览:2145 |