Java 实例 – 打印矩形

输出矩形。

实例

  1. public class Rect {
  2. public static void main(String[] args) {
  3. //外层循环 每次输出一行*
  4. for (int i = 1; i <= 5; i++) {
  5. System.out.print("*");
  6. //内层循环 每次输出一个*
  7. for (int j = 1; j <= 5; j++) {
  8. System.out.print("*");
  9. }
  10. System.out.println();
  11. }
  12. }
  13. }

输出结果:

  1. ******
  2. ******
  3. ******
  4. ******
  5. ******

打印长方形

自定义长方形长与宽。

实例

  1. public class Rect {
  2. public static void main(String[] args) {
  3. print(5,8);
  4. // TODO 自动生成的方法存根
  5. }
  6. private static void print(int L, int W) {
  7. for(int i= 1;i<=L;i++){
  8. for(int j=1;j<=W;j++){
  9. System.out.print("*");
  10. }
  11. System.out.println();
  12. }
  13. // TODO 自动生成的方法存根
  14. }
  15. }

输出结果:

  1. ********
  2. ********
  3. ********
  4. ********
  5. ********