自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 问答 (1)
  • 收藏
  • 关注

原创 明解JAVA第五章答案

1 import java.util.Scanner; public class test5_1 { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); System.out.println("请输入一个整数:"); int x=scanner.nextInt(); //十进制 System.out.print

2020-05-22 12:51:29 259 3

原创 明解JAVA第三章答案

1 import java.lang.Math; import java.util.Scanner; public class test3_1 { public static void main(String[] args) { Scanner stdIn=new Scanner(System.in); System.out.println("Please enter an integer:"); int x=stdIn.nextInt();

2020-05-22 12:45:56 245

原创 明解JAVA第二章答案

test2-1 public class test2_1 { public static void main(String[] args) { double x; double y; x=63.2; y=18.6; System.out.println("x的值是"+x+"。"); System.out.println("y的值是"+y+"。"); System.out.pri

2020-05-15 13:51:49 396 2

原创 明解JAVA第一章答案

test1_1 public class test1_1 { public static void main(String[] args) { System.out.println("Hello world!"); } } test1_2 public class test1_2 { public static void main(String[] args) { System.out.println("张\n" +"小\n" +"二");

2020-05-15 13:40:45 239

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除