黑马程序员技术交流社区
标题:
打印特殊符号(田字。)
[打印本页]
作者:
huangjunhui
时间:
2015-10-29 22:10
标题:
打印特殊符号(田字。)
import java.util.Scanner;
public class Example18 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("请输入一个数字:");
int s = sc.nextInt();
tianZi(s);
}//可以改成田字。
public static void tianZi(int x) {
for (int i = 1;i<x;i++) {
if (i==x/2) {
System.out.print("");
}else {
for (int y = 1;y<=i;y++) {
System.out.print("* ");
if(y==x/2) {
System.out.print(" ");
}
}
}
System.out.println();
}
}
}
复制代码
作者:
juejin
时间:
2015-10-29 23:03
有点意思
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2