首页
试卷库
试题库
当前位置:
X题卡
>
所有题目
>
题目详情
在下列网络的传输介质中,抗干扰能力最好的一个是______。
查看本题答案
包含此试题的试卷
计算机等级考试《单项选择》真题及答案
点击查看
你可能感兴趣的试题
下列网络传输介质中抗干扰能力强数据传输率最高的是
双绞线
多模光纤
单模光纤
无线介质
在下列网络的传输介质中抗干扰能力最好的一个是______
光缆
同轴电缆
双绞线
电话线不可靠、故障率高
在下列传输介质中抗干扰能力最强的是
微波
双绞线
光纤
同轴电缆
下列传输介质中抗干扰能力最好的是
光缆
同轴电缆
双绞线
电话线
下列传输介质中哪种传输介质的抗干扰性最好
光缆
双绞线
同轴电缆
热门试题
更多
请完成下列Java程序程序的功能是复制文件并显示文件将每个字符读入并写入另一个文件同时显示出来注意在本题中当前目录下的README.txt文件打印在屏幕上并写入另一个文件temp.txt中注意请勿改动main主方法和其他已有的语句内容仅在下画线处填人适当的语句importjava.io.*publicclassFileCopyBypublicstaticvoidmainStringargs[]tryFileReaderinput=newFileReaderREADME.txtFileWriteroutput=newFileWritertemp.txtintc=input.readwhile____________________System.out.printcharcc=input.readinput.closeoutput.closecatchIOExceptioneSystem.out.printlne
下面是一个Applet程序其功能是有2个按钮分别为First和Second以及一个Labe1构件要求点击First时则能在Labe1中显示出CommandFirst而点击Second时则能显示出CommandSecond要求只能使用重载一次actionPerformed方法请改正程序中的错误有下划线的语句使程序能输出正确的结果注意不改动程序的结构不得增行或删行程序运行结果如下importjava.awt.*;importjava.awt.event.*;importjava.applet.*;/*<appletcode=ex2_3.classwidth=800height=400></applet>*/publicclassex2_3extendsAppletimplementsActionListenerprivateStringstr=ok;privateLabe11;privateButtonbtn;publicvoidinitsetLayoutnull;1=newLabelstr;1.reshape101015030;add1;btn=newButtonFirst;btn.reshape10506020;1.addActionListenerthis;addbtn;btn=newButtonSecond;btn.reshape101006020;btn.setActionCommandFirst;btn.addActionListenerthis;addbtn;publicvoidactionPerformedActionEventaestr=Command:+ae.getActionCommand;btn.setTextstr;ex2_3.htm1<HTML><HEAD><TITLE>ex2_3</TITLE></HEAD><BODY><appletcode=ex2_3.classwidth=800height=400></applet></BODY></HTML>
本程序的功能是读取用户输入的整数ab单击按钮计算则计算出a和b数的和并显示计算的结果请将程序补充完整注意请勿修改main主方法和其他已有语句内容仅在横线处填入适当语句importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclasssimplepublicstaticvoidmainString[]argsExampleFrameframe=newExampleFrame;frame.______JFrame.EXIT_ON_CLOSE;frame.show;classExampleFrameextendsJFrameprivateJPanelpanel;publicstaticfinalintDEFAULT_WIDTH=250;publicstaticfinalintDEFAULT_HEIGHT=250;publicExampleFrameInit;setTitlewelcome;setSizeDEFAULT_WIDTHDEFAULT_HEIGHT;ContainercontentPane=getContentPane;contentPane.addpanel;privatevoidinitJLabella1=newJLabel输入整数a:;JLabella2=newJLabel输入整数b:;finalJTextFieldnum1=newJTextField10;finalJTextFieldnum2=newJTextField10;JButtonbut=newJButton计算;finalJLabelres=newJLabel结果:;but.addActionListener______publicvoidactionPerformedActionEventeventStringstr=newString;Strings1=num1.getText;Strings2=num2.getText;tryinta=Integer.parseInts1;intb=Integer.parseInts2;str=String.valueOfa+b;catchExceptionestr=e.getMessage;res.setText结果:+str;;panel=newJPanel;panel.setLayoutnewFlowLayoutFlowLayout.LEFT;panel.addla1;panel.addnum1;panel.addla2;panel.addhum2;panel.addbut;panel.addres;
请完善程序程序文件名Java_1.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]完善该程序并进行调试使程序输出结果如下图所示源程序//用2~20的偶数去初始化数组importjavax.swing.*publicclassJava_1publicstaticvoidmainStringargs[]finalintARRAY_SIZE=10intn[]//7I用整形数组Stringoutput=n=1int[ARRAY_SIZE]//分配数组//给数组赋值forinti=0i<n.lengthi++n[i]=2+2*ioutput+=数组下标/t值/nforinti=0i<n.lengthi++output+=i+/t+n[i]+/nJTextAreaoutputArea=2JTextArea1110outputArea.setTextoutputJOptionPane.3nulloutputArea用2至20的偶数去初始化数组JOptionPane.INFORMATION_MESSAGESystem.exit0
下面程序的功能是找出所有三位数中个十百位数字的立方和等于该数本身的三位数并显示在程序的每条横线处填写一个适当的语句使程序的功能完整publicclassLiFangHepublicstaticvoidmainStringargs[]System.out.println个十百位数字的立方和等于该数本身的三位数有:;forintn=100n<1000;n++intabc_______________b=n/10%10_______________if_______________System.out.printlnn;
请完善程序程序文件名Java_2.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]程序显示一个窗口该窗口包含一个按钮和一个文本域当单击按钮时将在文本域中显示当前日期如下图所示源程序importjava.awt.*importjava.awt.event.*importjava.util.*publicclassJava_2implementsActionListenerFramefButtonbTextFieldtfpublic1f=newFrameShowDatef.setLayoutnewFlowLayoutf.setSize400100//注册窗口__WindowListener2newWindowAdapterpublicvoidwindowClosingWindowEventeSystem.exit0b=newButton显示当前日期b.addActionListenerthistf=newTextField30f.addbf.addtff.setVisibletruepublicstaticvoidmainString[]argsJava_2t=newJava_2publicvoidactionPerformedActionEventeDated=newDate//获取当前日期tf.setTextd.toString
请完善程序程序文件名Java_1.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]完成程序并运行得到的结果如下图所示源程序importjavax.swing.JOptionPanepublicclassJava_1publicstaticvoidmainStringargs[]Stringoutput=forintcount=1count<=101ifcount2continue//当count为5时跳过循环中的剩余代码output+=count+output+=/nUsedcontinuetoskipprinting5JOptionPane.showMessageDialognulloutputSystem.exit0
请完善程序程序文件名Java_2.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]构造一个5行5列的二维数组给数组赋值并将其按照行列对齐的方式输出使程序输出结果如下0000100023004560789101112131415源程序importjava.io.*publicclassJava_2publicstaticvoidmainStringargs[]inta[][]=newint[5][5]intijk=1fori=0;i<5;i++forj=0;1;j++ifi+j<4a[i][j]=0else2fori=0;i<5;i++forj=0;j<5;j++ifa[i][j]<10System.out.printa[i][j]+elseSystem.out.printa[i][J]+System.out.println
请完善程序程序文件名Java_3.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]本题的要求是填三个空改两个错该程序是两个整数进行比较由考生通过输入窗口分别输入两个整数程序比较出结果源程序importjavax.swing.JOptionPanepublicclassJave_3publicstaticvoidmainStringargs[]StringfirstNumber//用户输入第1个字符串secondNumber//用户输入第2个字符串result//astringcontainingtheoutputintnumber1//比较的第1个数number2//比较的第2个数//读用户输入的第1个字符串readfirstnumberfromuserasastringfirstNumber=JOptionPane.showInputDialogEnterfirstinteger://读用户输入的第2个字符串readsecondnumberfromuserasastringsecondNumber=JOptionPane.showInputDialogEntersecondinteger://将字符串类型转换成整数类型number1=Integer.parseIntfirstNumbernumber2=Integer.parseIntsecondNumberresult=ifnumber1=number21//本行有错需修改result=number1+==+number2ifnumber1!=number2result=number1+!=+number2iffnumber1<number2result=result+/n+number1+<+number2ifnumber1>number2result=result+/n+number1+>+number2ifnumber1<=number2result=result+/n+number1+<=+number2if;number1>=number22//本行有错需修改result=result+/n+number1+>=+number2//显示结果3nullresultComparisonResults4INFORMATION_MESSAGE//程序正常退出5/*JOptionPane类的常用静态方法如下showInputDialogshowConfirmDialogshowMessageDialogshowOptionDialog*/
下面Applet程序其功能是实现一个计数器每隔0.15秒计数器数值加1数值动态变化并且能够控制计数器的暂停和继续要求通过使用swing的构件建立图形用户界面主要包括一个文本区域用于显示计数器结果两个按钮一个使计数器暂停一个使计数器继续工作请改正程序中的错误有下划线的语句使程序能输出正确的结果注意不改动程序的结构不得增行或删行程序运行结果如下importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;/*<appletcode=ex7_3.classwidth=800height=400></applet>*/publicclassex7_3extendsJAppletprivateJTextFieldjtf=newJTextField15;privateJButtonHold=newJButtonHoldresume=newJButtonResume;privateex7_3thobj7_3th=newex7_3th;classex7_3thextendsThreadprivateintcnt=0;privatebooleanbIsHold=false;publicex7_3thstart;publicvoidholdbIsHold=true;publicsynchronizedvoidfauxResumebIsHold=false;wait;publicvoidrunwhiletruetrysleep150;synchronizedthiswhilebIsHoldnotify;catchInterruptedExceptionieSystem.err.printlnInterrupted;jtf.setTextcnt;publicvoidinitContainercp=getContentPane;cp.setLayoutnewFlowLayout;cp.addjtf;Hold.addActionListenernewActionListenerpublicvoidactionPerformedActionEventaeobj7_3th.hold;;cp.addHold;resume.addActionListenernewActionListenerpublicvoidactionPerformedActionEventeobj7_3th.fauxResume;;cp.addresume;publicstaticvoidmainString[]argsex7_3obj7_3=newex7_3;Stringstr=obi7_3.getClass.toString;ifstr.indexOfclass!=-1str=str.substring6;JFramefrm=newJFramestr;frm.addWindowListenernewWindowAdapterpublicvoidwindowClosingWindowEventweSystem.exitO;;frm.getContentPane.addobj7_3;frm.setSize300200;obj7_3.init;obi7_3.start;frm.setVisibletrue;ex7_3.html<HTML><HEAD><TITLE>ex7_3</TITLE></HEAD><BODY><appletcode=ex7_3.classwidth=800height=400></applet></BODY></HTML>
请完成下列Java程序读取自己的源文件并把它压缩成GZIP文件注意请勿改动main主方法和其他已有语句内容仅在下划线处填入适当的语句importjava.io.*;importjava.util.zip.*;publicclassexl62publicstaticvoidmainString[]argex16_2obj16_2=newex16_2;obj16_2.doZipex16_2.javaex16_2.gzippublicvoiddoZipStringstrInStringstrOutFileInputStreamin;FileOutputStreamout;GZIPOutputStreamgzip;intnFileLength;byte[]barray=newbyte[10];tryin=newFileInputStreamstrIn;out=newFileOutputStreamstrOut;gzip=newGZIPOutputStreamout;whilenFileLength=in.readbarray0barray.length>0_____________________;______________________;gzip.close;catchExceptionee.printStackTrace;
请完善程序程序文件名Java_1.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]完善该程序并进行调试使程序输出结果如下图所示源程序//用2~20的偶数去初始化数组importjavax.swing.*publicclassJava_1publicstaticvoidmainStringargs[]finalintARRAY_SIZE=10intn[]//7I用整形数组Stringoutput=n=1int[ARRAY_SIZE]//分配数组//给数组赋值forinti=0i<n.lengthi++n[i]=2+2*ioutput+=数组下标/t值/nforinti=0i<n.lengthi++output+=i+/t+n[i]+/nJTextAreaoutputArea=2JTextArea1110outputArea.setTextoutputJOptionPane.3nulloutputArea用2至20的偶数去初始化数组JOptionPane.INFORMATION_MESSAGESystem.exit0
请完成下列Java程序创建一个下拉式菜单菜单项包括3个CheckboxMenultem复选框一条分割线和一个Exit项要求打开或关闭复选框时确定是哪个被切换是开还是关并输出它的状态选择Exit项能够退出程序注意请勿改动main主方法和其他已有语句内容仅在下划线处填入适当的语句程序运行结果如下importjava.awt.*;importjava.awt.event.*;publicclassex4_2extendsFrameimplementsItemListenerActionListenerpublicstaticvoidmainString[]argex4_2obj4_2=newex4_2;ex4_2superex4_2;MenuBarmb=newMenuBar;Menum=newMenuMenu;MenuItemmi;mb.addm;CheckboxMenuItemcb;cb=newCheckboxMenuItemCheckl;cb.addItemListenerthis;m.addcb;cb=newCheckboxMenuItemCheck2;cb.addItemListenerthis;m.addcb;cb=newCheckboxMenuItemCheck3;cb.addItemListenerthis;m.addcb;m.addSeparator;m.addmi=newMenuItemExit;mi.addActionListenerthis;setMenuBarmb;setSize5050;show;publicvoiditemStateChangedItemEventeventSystem.out.printevent.getItem;switchevent.getStateChangecaseItemEvent.DESELECTED:System.out.printlnDESELECTED;break;case______________;______________;break;publicvoidactionPerformedActionEventaeifae.getActionCommand.equalsExit-System.exitO;
请完善程序程序文件名Java_3.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]生成下面左边图形界面单击图中的New按钮弹出如右图所示的对话框源程序importjava.awt.*importjava.awt.event.*importjavax.swing.*publicclassJava_3publicstaticvoidmainString[]argsMulticastFrameframe=newMulticastFrameframe.setDefaultCloseOperationJFrame.EXIT_ON_CLOSEframe.showclassMulticastFrameextendsJFramepublicMulticastFramesetTitleMulticastTestsetSizeWIDTHHEIGHTMulticastPanelpanel=newMulticastPanelContainercontentPane=getContentPanecontentPane.add1publicstaticfinalintWIDTH=300publicstaticfinalintHEIGHT=200classMulticastPanelextendsJPanelpublicMulticastPanelJButtonnewButton=newJButtonNewaddnewButtonActionListenernewListener=newActionListenerpublicvoidactionPerformedActionEventeventmakeNewFramenewButton.addActionListenernewListenercloseAllButton=newJButtonClosealladdcloseAllButtonprivatevoidmakeNewFramefinalBlankFrameframe=newBlankFrameframe.showActionListenercloseAllListener=newActionListenerpublicvoidactionPerformedActionEventeventframe.2//使窗口隐藏或消除closeAllButton.addActionListener3privateJButtoncloseAllButtonClassBlankFrameextendsJFramepublicBlankFrame4++setTitleFrame+countersetSizeWIDTHHEIGHTsetLocationSPACING*counterSPACING*counterpublicstaticfinalintWIDTH=200publicstaticfinalintHEIGHT=150publicstaticfinalintSPACING=30privatestaticintcounter=0
下面程序创建一个长宽均为100的Frame窗口并且窗口的背景颜色是蓝色请将程序补充完整注意不改动程序结构不得增行或删行importjava.awt.*;publicclassex1extendsFramepublicstaticvoidmainString[]argsex1t=newex1;t.setSize100100;______t.setVisibletrue;
请完善程序程序文件名Java_3.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]生成下面左边图形界面单击图中的New按钮弹出如右图所示的对话框源程序importjava.awt.*importjava.awt.event.*importjavax.swing.*publicclassJava_3publicstaticvoidmainString[]argsMulticastFrameframe=newMulticastFrameframe.setDefaultCloseOperationJFrame.EXIT_ON_CLOSEframe.showclassMulticastFrameextendsJFramepublicMulticastFramesetTitleMulticastTestsetSizeWIDTHHEIGHTMulticastPanelpanel=newMulticastPanelContainercontentPane=getContentPanecontentPane.add1publicstaticfinalintWIDTH=300publicstaticfinalintHEIGHT=200classMulticastPanelextendsJPanelpublicMulticastPanelJButtonnewButton=newJButtonNewaddnewButtonActionListenernewListener=newActionListenerpublicvoidactionPerformedActionEventeventmakeNewFramenewButton.addActionListenernewListenercloseAllButton=newJButtonClosealladdcloseAllButtonprivatevoidmakeNewFramefinalBlankFrameframe=newBlankFrameframe.showActionListenercloseAllListener=newActionListenerpublicvoidactionPerformedActionEventeventframe.2//使窗口隐藏或消除closeAllButton.addActionListener3privateJButtoncloseAllButtonClassBlankFrameextendsJFramepublicBlankFrame4++setTitleFrame+countersetSizeWIDTHHEIGHTsetLocationSPACING*counterSPACING*counterpublicstaticfinalintWIDTH=200publicstaticfinalintHEIGHT=150publicstaticfinalintSPACING=30privatestaticintcounter=0
请完善程序程序文件名Java_3.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]本题的要求是填三个空改两个错该程序是两个整数进行比较由考生通过输入窗口分别输入两个整数程序比较出结果源程序importjavax.swing.JOptionPanepublicclassJave_3publicstaticvoidmainStringargs[]StringfirstNumber//用户输入第1个字符串secondNumber//用户输入第2个字符串result//astringcontainingtheoutputintnumber1//比较的第1个数number2//比较的第2个数//读用户输入的第1个字符串readfirstnumberfromuserasastringfirstNumber=JOptionPane.showInputDialogEnterfirstinteger://读用户输入的第2个字符串readsecondnumberfromuserasastringsecondNumber=JOptionPane.showInputDialogEntersecondinteger://将字符串类型转换成整数类型number1=Integer.parseIntfirstNumbernumber2=Integer.parseIntsecondNumberresult=ifnumber1=number21//本行有错需修改result=number1+==+number2ifnumber1!=number2result=number1+!=+number2iffnumber1<number2result=result+/n+number1+<+number2ifnumber1>number2result=result+/n+number1+>+number2ifnumber1<=number2result=result+/n+number1+<=+number2if;number1>=number22//本行有错需修改result=result+/n+number1+>=+number2//显示结果3nullresultComparisonResults4INFORMATION_MESSAGE//程序正常退出5/*JOptionPane类的常用静态方法如下showInputDialogshowConfirmDialogshowMessageDialogshowOptionDialog*/
下列程序中要求计算1+2+3++100的值并显示计算结果请将程序补充完整程序运行结果如下5050publicclassex6_1publicstaticvoidmainStringrargsex6_1obj6_1newex6_1obj6_1.method6_1publicvoidmethod6_1intsum___________forinti=1i<=100i++______________________
下列程序中实现将封装数据类型Integer和基本数据类型int之间的转换以及Integerint类型和String类型之间的转换请将程序补充完整程序运行结果如下123456456publicclassex7_1publicstaticvoidmainString[]argsIntegerintObjintnStringsintObj=newInteger123n=intObj.__________System.out.printinInteger.toStringns=newString456intObj=Integer._________System.out.printlnintObj.__________n=Integer.parseIntsSystem.out.printlnInteger.toStringn
请完善程序程序文件名Java_1.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]计算复杂利息使程序输出结果如下图所示源程序//计算复杂利息importjava.text.DecimalFormatimportjavax.swing.JOptionPaneimportjavax.swing.JTextAreapublicclassJava_1publicstaticvoidmainStringargs[]doubleamountprincipal=1000.0rate=.05DecimalFormatprecisionTwo=newDecimalFormat0.00JTextAreaoutputTextArea=new11120outputTextArea.append年/t存款总计/nforintyear=1year<=10year++amount=principal*Math.pow1.0+rateyearoutputTextArea.appendyear+/t+precisionTwo.2amount+/nJOptionPane.3nulloutputTextArea复合利息JOptionPane.INFORMATION_MESSAGESystem.exit0
下面的Applet程序其功能为画一个正方形大小140*140其背景色为蓝色其填充色为pink色各边离Applet的边为10像素和一个在填充的正方形中自右上到左下来回移动的小球半径15请改正程序中的错误有下划线的语句使程序执行后能得到预期的结果注意不改动程序的结构不得增行或删行程序的执行结果为importjava.awt.*importjava.applet.*/*<appletcode=BallAnimwidth=800height=600></applet>*///画一个正方形和一个移动的球实现了Runnable接口publicclassBallAnimextendsAppletimplementsRunnableThreadanimThreadintballX=100//球的x坐标intbally10//球的Y坐标intballDirection=0//球移动的方向标志0表示从上向下移动1表示从下向上移动publicvoidinitsuper.setBackgroundColor.blue;publicvoidstartifanimThread!=nullanimThread=newThreadthis;animThread.start;publicvoidstopanimThread.stop;animThread=null;//实现Runnable接publicvoidrunThread.currentThread.setPriorityThread.NORM_PRIORITY;//设置线呈优先级NORM_PRIORITYwhiletruemoveBall;tryThread.sleep100;//休眠0.1秒catchExceptionsleepProblem//Thisappletignoresanyexceptionsifithasaproblemsleeping.//MaybeitshouldtakeSominexprivatevoidmoveBall//球对角运动ifballDirection==0ballX-=2;//如果球从左向右运动球的X坐标减少2ballY+=2;//如果球从上向下运动球的Y坐标增加2ifballY>100//球的Y坐标增加到100改变球的运动方向ballDirection=1;ballX=10;ballY=100;elseballX+=2;//如果球从右向左运动球的X坐标增加2ballY-=2;//如果球从下向上运动球的Y坐标减少2ifbally<=10//球的X坐标减少到10改变球的运动方向ballDirection=0;ballX=100;ballY=10;paint;publicvoidpaintGraphicsgg.setColorColor.pink;g.fillRect1010120120;g.setColorColor.green;g.fillOvalballXballY3030;ex40_3.html:<html><head><title>ex40_3</title></head><body><appletcode=BallAnim.classwidth=800height=400></applet></body></html>
请完成下列Java程序输入2个整数求最大公约数要求有2个单行文本区作为输入2个按钮一个单击完成计算一个单击退出程序注意请勿改动main主方法和其他已有语句内容仅在下划线处填入适当的语句源程序文件代码清单如下importjava.awt.*importjava.awt.event.*publicclassex7_2extendsFrameimplementsActionListenerprivateLabel1privateTextFieldtftf2publicstaticvoidmainStringargs[]ex7_2obj7_2=newex7_2publicex7_2setTitleex7_2Panelp1Buttonb=newButtonOKp1=newPaneltf=newTextField8p1.addtftf2=newTextField8p1.addtf2b.addActionListenerthisp1.addbb=newButtonExitb.addActionListenerthisp1.addbaddNorthp1Panelp2=newPanell=newLabel最大公因数p2.addladdCenterp2setsize500300showpublicvoidactionPerformedActionEventaeifae.getActionCommand.equalsExit//比较ae对象的标识名是否为ExitSystem.exit0elseifae.getActlonCommand.equalsOKtryinta=Integer.parseInttf.getTextintb=Integer.parseInttf2.getTextintriwhileb>0____________b=rl.setText最大公约数:+Integer.toStringacatchNumberFormatExceptionnfel.setText请正确输入!
下面是一个Applet程序设置其宽高为300和300像素程序的功能是在小程序界面画一根水平线和一根垂直线将小程序界面均分为4个区域鼠标在不同的区域移动时显示不同的几何图形请改正程序中的错误有下划线的语句使程序能输出正确的结果注意不改动程序的结构不得增行或删行程序运行结果如下importjava.awt.*;importjava.awt.Graphics.*;importjava.awt.event.*;/*<appletcode=AppletProgramingwidth=200height=200></applet>*/publicclassAppletProgramingextendsAppletintm=-1n=-1;publicvoidinitaddMouseMotionListenernewMouseMotionAdapterpublicvoidmouseMovedMousepm=e.getX;n=e.getY;repaint;publicvoidpaintGraphicsgg.drawLine1000100200;g.drawLine0100200100;ifm<100&&n<100g.setColorColor.black;g.fillOval10108080;elseifm>100&&n<100g.setColorColor.green;g.fillRect110108080;elseifm<100&&n>100g.setColorColor.blue;g.fillArc10130803550250;elseifm>100&&n>100intxvals[]=150180120;intyvals[]=120170170;g.setColorColor.yellow;g.fillPolygonxvalsyvals3;ex35_3.html:<html><head><title>ASimpleProgram</title></head><body><appletcode=AppletPrograming.classwidth=800height=400></applet></body></html>
请完善程序程序文件名Java_3.java并进行调试请在下画线处填入正确内容然后删除下画线请勿删除注释行和其他已有的语句内容[题目要求]本题的要求是填三个空改两个错该程序是两个整数进行比较由考生通过输入窗口分别输入两个整数程序比较出结果源程序importjavax.swing.JOptionPanepublicclassJave_3publicstaticvoidmainStringargs[]StringfirstNumber//用户输入第1个字符串secondNumber//用户输入第2个字符串result//astringcontainingtheoutputintnumber1//比较的第1个数number2//比较的第2个数//读用户输入的第1个字符串readfirstnumberfromuserasastringfirstNumber=JOptionPane.showInputDialogEnterfirstinteger://读用户输入的第2个字符串readsecondnumberfromuserasastringsecondNumber=JOptionPane.showInputDialogEntersecondinteger://将字符串类型转换成整数类型number1=Integer.parseIntfirstNumbernumber2=Integer.parseIntsecondNumberresult=ifnumber1=number21//本行有错需修改result=number1+==+number2ifnumber1!=number2result=number1+!=+number2iffnumber1<number2result=result+/n+number1+<+number2ifnumber1>number2result=result+/n+number1+>+number2ifnumber1<=number2result=result+/n+number1+<=+number2if;number1>=number22//本行有错需修改result=result+/n+number1+>=+number2//显示结果3nullresultComparisonResults4INFORMATION_MESSAGE//程序正常退出5/*JOptionPane类的常用静态方法如下showInputDialogshowConfirmDialogshowMessageDialogshowOptionDialog*/
下列程序打包到example包main方法调用线程类输出0~9这10个数请填写横线处的内容注意请勿改动main主方法和其他已有语句内容仅在横线处填入适当语句______interfaceMyInterfacepublicabstractvoidprintintn;classMythreadextendsThread______MyInterfacepublicvoidrunforinti=0;i<10;i++this.printi;publicvoidprintintnSystem.out.printn+;publicclassExample1_6publicstaticvoidmainStringargv[]Mythreadth=newMythread;______
请完成下列Java程序假设某家银行它可接受顾客的汇款每做一次汇款便可计算出汇款的总额现有两个顾客每人都分3次每次将50元钱汇入编写一个程序模拟实际作业要求实现2个类一个是银行类一个是顾客类注意请勿改动main主方法和其他已有语句内容仅在下划线处填入适当的语句程序运行结果如下Customer2:sum=50Customer1:sum=50Customer1:sum=100Customer2:sum=100Customer1:sum=150Customer2:sum=150classbankprivatestaticintsum=0;publicstaticvoidaddintncharcinttmp=sum;______;tryThread.sleepint2000-500+1*Math.random+500catchInterruptedExceptionesum=tmp;System.out.printlnCustomer+c+:sum=+sum;classcustomerextendsThreadstaticcharflag4_1=’1’publicvoidruncharmyflag4_1synchronizedthismyflag4_1=flag4_1++;forinti=1;i<=3;i++______;publicclassex4_1publicstaticvoidmainStringargs[]customerc1=newcustomer;customerc2=newcustomerc1.startc2.start
下面的程序是从命令行输入3个数传递到publicstaticvoidmainStringargs[]方法中如javaIsTriangle345并判断这3个数能否构成三角形的3条边并显示相应的结果请在程序的每条横线处填入适当的语句使程序的功能完整注意请勿改动main主方法和其他已有的语句内容仅在横线处填入适当的语句publicclassIsTrianglepublicstaticvoidmainStringargs[]inta[]=new______________[args.length];forinti=0;i<args.length;i++a[i]=____________________if_________________System.out.printlna[0]++a[1]++a[2]能构成三角形的3条边elseSystem.out.printlna[0]++a[1]++a[2]不能构成三角形的3条边;
下面是一个Applet程序其功能是建立2个文本区域一个为编辑区一个为只读区建立2个按钮一个实现将编辑区中被鼠标选定的文本内容拷贝到只读区中一个实现将只读区的全部文本内容清空请改正程序中的错误有下划线的语句使程序能输出正确的结果注意不改动程序的结构不得增行或删行程序运行结果如下importjava.awt.*;importjava.applet.*;/*<appletcode=ex6_3.classwidth=800height=400></applet>*/publicclassex6_3extendsAppletprivateButtonokBtnclearBtn;privateStringstrMessage;privateTextAreatArealtArea2;publicvoidinitstrMessage=Hello!Welcometothetest!/n+ThisistheNCRExamination!/n+Wishyougoodluck!;tAreal=newTextArea1025;tAreal.setTextstrMessage;tArea2=newTextArea1025;tArea2.setEditabletrue;okBtn=newButtonCopy;clearBtn=newButtonClear;addtArea1;addtArea2;addokBtn;addclearBtn;publicbooleanactionEventeObjectoife.target==okBtntAreal.setTexttArea2.getSelectedText;elseife.target==clearBtntAreal.setText;returntrue;ex6_3.html<HTML><HEAD><TITLE>ex6_3</TITLE></HEAD><BODY><appletcode=ex6_3.classwidth=800height=400></applet></BODY></HTML>
以下程序从键盘读取一个字符串以‘#’作为结束再将字符串中的小写英文字母改写成大写英文字母最后将改写好的字符串写入磁盘文件file.txt请将程序补充完整注意不改动程序结构不得增行或删行packagech3;importjava.io.*;classFile1privatecharch;privateinti=’a’-’A’;voidsavetoFileSystem.out.println请输入一个字符串;try______out=new______ch3/file.txt;whilech=charSystem.in.______!=’#’ifch>=’a’&&ch<=’z’ch=charintch-i;out.______;out.close;catchIOExceptionee.printStackTrace;publicclassex3publicstaticvoidmainString[]argsFile1obj=newFile1;Obj.savetoFile;
在当前文件夹中生成一个名为Filel.txt的文件在D盘里生成一个名为mydir的文件夹并在该文件夹中生成一个名为File2.txt的文件最后输出文件File2.txt的完整路径修改下列程序中的错误之处使程序能够正确运行注意不改动程序结构不得增行或删行importjava.io.*;publicclassFileTestpublicstaticvoidmainStringargs[]FiledirObject=newFiled://mydir;FilefileObjectl=newFiled://kmydirFilel.txt;FilefileObject2=newFiled:/mydirFile2.txt;System.out.printlnfileObject2;tryDirobject.mkdir;catchSecurityExceptionetryfileObject1.createNewFile;fileObject2.createNewFile;catchI0Exceptione
热门题库
更多
计算机等级考试
法宣在线考试
司法卷一
司法卷二
司法卷三
司法卷四
企业法律顾问资格考试
“十三五”规划继续教育
潜力激活与创造力开发继续教育
创新创业能力继续教育
科研方法与论文写作继续教育
全面深化改革实现文明发展
提高自身绩效路径与方法
互联网监管与网络道德建设
“互联网+”和电子商务继续教育
职业道德素养继续教育