题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2023-12-11 20:56:26

[简答题]请在下面程序中的每条横线处填写一个语句,使程序的功能完整。程序的输出结果为:
TIME=1867
b=9
i=123
注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。
源程序文件代码清单如下:
import java.io.*;
public class DataType

public ______ void main(String args[])

byte b;
int i;//定义变量i为int类型
______//定义常量TIME为整型,且值为1867
i=123;//给变量i赋值,该值为十进制的123
______//给变量赋值,改值为八进制的11,十进制的9
System.out.println("TIME"+TIME);
System.out.println("b="+b);
System.out.println("i="+i);


更多"请在下面程序中的每条横线处填写一个语句,使程序的功能完整。程序的输出结"的相关试题:

[简答题]请在下面程序中的每条横线处填写一个语句,使程序的功能完整。程序的输出结果为: TIME=1867 b=9 i=123 注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。 import java.io.*; public class DataType{ public______________void main(String args[]) { byte b; int i;//定义变量i为int类型 ___________________________ //定义常量TIME为整型,且值为1867 i=123;//给变量i赋值,该值为十进制的123 __________________________________//给变量赋值,改值为,八进制的11,十进制的9 System.out.println("TIME”+TIME); System.out.println("b="+b); System.out.println("i="+i); } }
[简答题]请在下面程序中的每条横线处填写一个语句,使程序的功能完整。程序的输出结果为: TIME=1867 b=9 i=123 注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。 源程序文件代码清单如下: import java.io.*; public class DataType { public ______ void main(String args[]) { byte b; int i;//定义变量i为int类型 ______//定义常量TIME为整型,且值为1867 i=123;//给变量i赋值,该值为十进制的123 ______//给变量赋值,改值为八进制的11,十进制的9 System.out.println("TIME"+TIME); System.out.println("b="+b); System.out.println("i="+i); } }
[简答题]下面程序的功能是输出字符串“HGPEDCBA”, 请在程序的每条横线处填写一个适当的语句,使程序的功能完整。
注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。
import java.io.*;
public class InputString
public static void main(String args[ ])
String stringname= new _______________ ("ABCDEFGH");
for(int i= _______________ i>=0;i--)
System.out.println(String.valueOf(stringname.________________));


[简答题]下面的程序的功能是简单的进行键盘输入测试,请在程序的每条横线处填写一个语句,使程序的功能完整。 注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。 ____________________ public class TestKeyBoardInPut {public static void main(String[] args) {String yourname=JOptionPane. ____________________ ("What is your name"); System.out.println("Hello"+yourname); ____________________.exit(0); } }
[简答题]下面的程序是用do_while语句计算10的阶乘。请在程序的每条横线处填写一个语句,使程序的功能完整。
注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。
源程序文件代码清单如下:
public class DoWhileLoop

public static void main(________)

int n=10;
long result=1;
do

_______________

______________
System.out.println("10的阶乘为: "+result);


[简答题]下面是关于字符界面基本输入输出的程序,请在程序的每条横线处填写一个语句,使程序的功能完整。 注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。 ______________________ public class SimpleCharInOut{ public static void main(String args[]){ char c=" "; System.out.println("Enter a character please: "); try{ ____________________//接受用户键盘输入的字符并保存在变量c中 } catch(________________________e){} System.out.println("You’ve entered character "+c); } }
[简答题]下面的程序的功能是求1~100的奇数的和及该和的平均值。请在程序的每条横线处填写一个语句,程序的功能完整。 注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。 public class SumAndAve{ public static void main(String args[ ]){ int count=0,sum=0,ave=0; for(int i=1;i<=100;____________________) if(_____________________) continue; else { ___________________ sum=sum+i; } ave=sum/count; System.out.println("sum="+sum); System.out.println("ave="+ave); } }
[简答题]下面的程序是求字符串的长度及每一个位置上的字符。请在每条横线处填写一条语句,使程序的功能完整。 注意;请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。 public class CharAtOp{ public static void main(String args[ ]){ String str="abcdef"; int size= System.out.println("字符串str的长度为: "+size); for(int m=0;___________________m++) { _______________________ System.out.println("str中的第"+m+"个字符是: "+c); } } }
[简答题]下面的程序的功能是求1~100的奇数的和及该和的平均值。请在程序的每条横线处填写一个语句,使程序的功能完整。 注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。 public class SumAndAve{ public static void main(String args[]){ int count = 0, sum = 0, ave= 0; for (int i = 1; i<= 100; ______) if(______) continue; else { ______ sum=sum+i; } ave= sum/count; System.out.println( "sum="+sum); System.out.println( "ave="+ave); } }
[简答题]下面程序是关于位运算符的使用。请在程序的每条横线处填写适当的语句,使程序的功能完整。
注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的位运算符。
public class BitOperator
public static void main(String args[ ])
int a=9; //二进制数1001
int b=15; //二进制数1111
int c=8; //二进制数1000
int d,e, f,g,h;
d=a _____________________ b;//二进制数1001, 也就是十进制数9
e=a|b;//二进制数1111, 也就是十进制数15
f=a _____________________ b;//二进制数0110, 也就是十进制数6
g=a<<2 / /; 9×4=36
h=c_______________________1;//8/2=4
System. out .println ( "d="+d);
System. out .println ( "e="+e);
System. out .println ( "f="+f);
System. out .println ( "g="+g);
System. out .println ( "h="+h);


[简答题]下面的程序是用do-while语句计算10的阶乘。请在程序的每条横线处填写1个语句,使程序的功能完整。
注意:请勿改动main( )主方法和其他已有的语句内容;仅在横线处填入适当的语句。
源程序文件代码清单如下:
public class DoWhileLoop

public static void main(______)

int n=10;
long result=1;
do

_____;

_____;
System.out.println("10的阶乘为:"+result);


[简答题]下面的程序是打印输出100~300之间的不能被3整除的数。请在每条横线处填写一条语句,使程序的功能完整。 注意:请勿改动main( )主方法和其他已有的语句内容,仅在横线处填入适当的语句。 public class printN03and5{ void print( ) { int n; for(n=100 ;n<=300 ;n++) if(n%3==0) _________________ System.out.println(n); } public static__________main(String args[]) { printNo3and5 obj=new printNo3and5( ) ___________________ } }

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码