爱心技术专栏专题

小程序---使用输入框填写行列值,输出矩阵表

摘录:爱心 来源:爱心 加入时间:2006年11月25日
摘要:
小程序---使用输入框填写行列值,输出矩阵表
import javax.swing.*;

public class Lesson23
{
public static void main ( String [] args )
{
int SHI;
// 循环检测程序 !
do
{
//输入框检测程序 !
Sy…

转载:转载请保留本信息,本文来自
http://www.51dibs.com
/html/2006/article/info/a_00aa4eac00c0fa34.htm

小程序---使用输入框填写行列值,输出矩阵表

站点:爱心种子小博士 关键字:小程序---使用输入框填写行列值,输出矩

   
小程序---使用输入框填写行列值,输出矩阵表
import javax.swing.*;

public class Lesson23
{
public static void main ( String [] args )
{
int SHI;
// 循环检测程序 !
do
{
//输入框检测程序 !
System.out.println( "" );
System.out.println( "" );
String Hang = JOptionPane.showInputDialog( " 请输入图形的行数 : " );
int x = Integer.parseInt( Hang );
String Lie = JOptionPane.showInputDialog( "请输入图形的列数 :" );
int y = Integer.parseInt( Lie );
SHI = HuiTuHanshu( x, y );
}
while ( SHI==1 );

System.exit(0);
};

static int HuiTuHanshu ( int i, int j )
{
// 输入值的检测!
if ( i<=0 || j<=0 )
// 错误的输入
{
System.out.println( " 输入的行列数有错,请查证后再输入 ! " );
return(0);
}
else
// 正常情况
{
int h, l;
for ( h=1; h<=i; h++ )
{
for ( l=1; l<=j; l++ )
{
System.out.print( " * " );
}
System.out.println( "" );
}
System.out.println( "" );
System.out.println( " 这是您想要得图形 : " + i + "(行)" + " * " + j +"(列)" );

// 以输入的值作为程序是否再次运行的条件
String m = JOptionPane.showInputDialog( " 您想再次画图吗 ? 是(1) 否(2) " );
int shi = Integer.parseInt( m );
if ( shi==1 )
return( shi ); // 返回调用!
else
return(0); // 返回调用!
}

};
}

------------------------------------
小程序,希望大家指教

我的联系方式:
QQ:254240003
E: [email protected]
[email protected]

客户服务中心信箱:[email protected] [email protected] 网站地图

声明

合作伙伴: