09 2017 档案

摘要:一./*功能:输出一个长整型的变量 123456789012345*/public class Lin{ public static void main(String[] args) { long l=123456789012345l; System.out.println(l); } }二./** 阅读全文
posted @ 2017-09-25 11:05 刘志博 阅读(127) 评论(0) 推荐(0) 编辑
摘要:import java.util.Scanner;public class Ex { public static void main(String[] args) { Scanner Lf=new Scanner(System.in); double a,b,c,d; System.out.prin 阅读全文
posted @ 2017-09-17 23:06 刘志博 阅读(76) 评论(0) 推荐(0) 编辑
摘要:import java.util.Scanner; public class Pest { public static void main(String[] args) { Scanner Lf=new Scanner(System.in); String LinF; System.out.prin 阅读全文
posted @ 2017-09-17 23:04 刘志博 阅读(79) 评论(0) 推荐(0) 编辑
摘要:1.3 (显示图案)编写一个程序,显示下面的图案: J A V V A J A A V V A A J J AAAAA V V AAAAA J J A A V A A 答:代码如下: public class Exercise03 { public static void main(String[] 阅读全文
posted @ 2017-09-11 21:04 刘志博 阅读(133) 评论(0) 推荐(0) 编辑