任意字符的矩阵输出(Square of Any Character)


代码如下:

package example;
//JHTP Exercise 6.19: Square of Any Character
//by pandenghuang@163.com
/**(Displaying a Square of Any Character) Modify the method created in Exercise 6.18 to receive
a second parameter of type char called fillCharacter. Form the square using the char provided
as an argument. Thus, if side is 5 and fillCharacter is #, the method should display
#####
#####
#####
#####
#####
Use the following statement (in which input is a Scanner object) to read a character from the user
at the keyboard:
char fill = input.next().charAt(0);*/
import java.util.Scanner;

public class SquareofChar 
{
	public static void printSquare(int size,char c){

		for (int i=0;i<size;i++){
			for (int j=0;j<size;j++)
				System.out.print(c);
			System.out.println();
			}
	}
public static void main(String[] args)
{
	int size=0;
	char c=0;

	Scanner input=new Scanner(System.in);
	
	do {
		System.out.print("请输入边长(整数,输入-1退出):");
		size=input.nextInt();
		if(size==-1)
			System.out.print("已退出程序");
		else
		{
		System.out.print("请输入字符:");
		c=input.next().charAt(0);
		printSquare(size,c);
		}
	} 
	while (size!=-1);
}
}


运行结果:

请输入边长(整数,输入-1退出):8
请输入字符:#
########
########
########
########
########
########
########
########
请输入边长(整数,输入-1退出):10
请输入字符:&
&&&&&&&&&&
&&&&&&&&&&
&&&&&&&&&&
&&&&&&&&&&
&&&&&&&&&&
&&&&&&&&&&
&&&&&&&&&&
&&&&&&&&&&
&&&&&&&&&&
&&&&&&&&&&
请输入边长(整数,输入-1退出):16
请输入字符:^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值