黑马程序员技术交流社区

标题: 打印特殊符号(田字。) [打印本页]

作者: huangjunhui    时间: 2015-10-29 22:10
标题: 打印特殊符号(田字。)
  1. import java.util.Scanner;
  2. public class Example18 {
  3.         public static void main(String[] args) {
  4.                 Scanner sc = new Scanner(System.in);
  5.                 System.out.print("请输入一个数字:");
  6.                 int s = sc.nextInt();
  7.                 tianZi(s);
  8.         }//可以改成田字。
  9.         public static void tianZi(int x) {
  10.                 for (int i = 1;i<x;i++) {
  11.                         if (i==x/2) {
  12.                                 System.out.print("");       
  13.                         }else {
  14.                         for (int y = 1;y<=i;y++) {
  15.                                 System.out.print("* ");
  16.                                 if(y==x/2) {
  17.                                         System.out.print(" ");
  18.                                        
  19.                                 }
  20.                           }
  21.                         }
  22.                         System.out.println();
  23.                 }
  24.                
  25.         }

  26. }
复制代码

作者: juejin    时间: 2015-10-29 23:03
有点意思  




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2