JAVA口试题JAVA口试题.doc

  1. 1、本文档共13页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JAVA口试题JAVA口试题

结课考核口试部分--分析程序 1 //第一个Java应用程序 public class Hello { public static void main(String args[]) { System.out.println(Hello Java!); } } 2 public class Boy { public void sing(String s) { System.out.println(s); } } class Hello { public static void main (String args[]) { System.out.println(Hello Java!); Boy boy1=new Boy(); boy1.sing(I am a boy!); } } 3 import java.awt.*; import java.applet.*; public class Example3 extends Applet { public void paint(Graphics g) { g.drawString (Hello World!,20,20); } } 4 public class Ex { public static void main (String args[]) { char x=a; int y=x; float z=x; System.out.println(y); System.out.println(z); } } 5 public class Ex { public static void main (String args[]) { char x=a; int y=12; float z=12.34F; System.out.println(x+y+z); } } 6 public class Ex { public static void main (String args[]) { int x=5,y=2; char a=m,b=k; boolean i=true,j=false; boolean k=(3*xy+20)||(a!=b)j||(!i); System.out.println( k=+k); } } 7 public class Ex { public static void main (String args[]) { int a[]=new int[5]; System.out.println(a数组的长度是:+a.length); int score[][]=new int [2][3]; System.out.println(score数组的行数是:+score.length); System.out.println(score数组的列数是:+score[0].length); } } 8 public class Ex { public static void main (String args[]) { int a[]; a=new int[2]; System.out.println(a); a=new int[5]; System.out.println(a); a[0]=1; a[1]=2; a[2]=3; a[3]=4; a[4]=5; for(int i=0;i5;i++) System.out.print(a[i]); System.out.print(\n); } } 9 public class Ex { public static void main(String args[]) { int x=2; if(x50) System.out.println(x+ 是大于50的数); else if(x10) System.out.pr

您可能关注的文档

文档评论(0)

yyongrjingd7 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档