资源描述:
《java基础语法_数据类型》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、JAVA基础语法_数据类型一、选择题1.下列正确的标识符有A)u2B)$testC)this_is_okD)int答案:ABC2.下面不是关键字的是A)gotoB)mainC)shortD)void答案:B3.下面语句哪个是正确的A)char='abc';B)long1o1=oxfff;C)floatf=0.23;D)doubled=0.7E-3;答案:C4.下列哪个选项是short型数据的取值范围A)-128~+127B)-32768~+32767C)-2147483648~+2417483647D)-3.40282347E38~+3.4
2、0282347E38答案:B5.Java的字符类型采用的是Unicode编码方案,每个Unicode码占用____个比特位A)8B)16C)32D)64答案:B6.在Java中,int数据类型占多少位A)8B)16C)32D)64答案:C7.Java中,表示换行符的转义字符是A)’’B)’f’C)’n’D)’dd’答案:A8.指出正确的表达式A)byte=128;B)Boolean=null;C)longa=0xfffL;D)double=0.9239d;otherstaffoftheCentre.Duringthewar,Zhuw
3、astransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinis
4、ter,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersand答案:D1.下面哪些注释方法能够支持javadoc命令A)/--...--/B)/*...*/;C)//;D)/**...*/;答案:D2.在Java中,float数据类型占多少位A)8B)16C)32D)64答案:C二、简答题1、Java中,基本数据类型有哪些?shortintcha
5、rlongdoublefloatbyteboolean2、请写出java中基本数据类型所对应的字节数?Short2Int4char2long8double8float4byte1boolean13、java的标识符由什么组成?能不能是中文?标识符是赋给类、方法或变量的名字。一个标识符可以是字母、数字、下划线、美元符号的任意顺序组合,但不能以一个数字开始。三、上机题一、作业对应编号详细要求1编写程序输出charc1=’你’,c2=’a’;char是=’ぁ’;三个字符变量中字符对应的unicode码;publicclassText{public
6、staticvoidmain(String[]args){otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMar
7、ch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersandcharc1='你';charc2='a';charc3='ぁ';intx=c1;System.out.println(x);x=c2;System.
8、out.println(x);x=c3;System.out.println(x);}}输出结果:2032097123532测试结果;程序代码见详细;publicclassTes