-
-
1
-
1
-
0
-
0经核实吧主八神庵99999 未通过普通吧主考核。违反《百度贴吧吧主制度》第八章规定http://tieba.baidu.com/tb/system.html#cnt08 ,无法在建设 安卓slg吧 内容上、言论导向上发挥应有的模范带头作用。故撤销其吧主管理权限。百度贴吧管理组
-
9/* 需求:打印一个图形: * * * * * * * * * * * * * * * 思路:相当于两个三角形 ----* ---** --*** -**** ***** 在*后加一个空格 再将-号换成空格 */ public class ForForTest { public static void main(String[] args) { for(int x=0 ; x<5 ; x++) { for(int y=x ; y<4 ; y++) { System.out.print(" "); } for(int z=0 ; z<=x ; z++) { System.out.print("* "); } System.out.println(); } } }
-
1我就是传说中的顶着善良光环的大好人
-
0/* 格式: 定义初始化表达式 while (条件表达式) { 循环体(执行语句) } */ public class WhileDemo { public static void main(String[] args) { //输出1~10这几个整数 int x = 1; while (x <= 10) { System.out.println("x="+x); x++; } //输出1~20中的奇数的两种方法 int x1 = 1,x2 = 1; while (x1 <= 20) { System.out.println("x1="+x1); x1++; x1++; } while(x2 <= 20) { System.out.println("x2="+x2); x2+=2; } } }
-
0/* 转义字符ESC(escape character) 比如实现在输出内容里的换行 常见的: \n换行 \b退格 \r按下回车键 \t制表符 */public class EscapeCharacter { public static void main(String[] args) { /* 例子: 输出一个带双引号的语句 编写如下 */ System.out.println("\"Hello World\""); //"\"后面的字符就被标识了 /* 同样的我们来输出一个两边被斜线包围的语句 */ System.out.println("\\Hello Java\\"); /*再输出一个语句,把上面两句连一块*/ System.out.print("Hello World\n Hello Java"
-
0/* 比较运算输出的结果为true或false 运算符: == != > < >= <= */ public class ComparativeOperation { public static void main(String[] args) { //举例(输出false) System.out.print(3==4); } }
-
0/* 这是反ASCII 是用单个字符来查看ASCII中代表的文字如"98" 98输出应为b */ public class UnAscii { public static void main(String[] args) { System.out.println((char) 98 ); } }
-
0/* 这是我的第二个java小程序 用于查看单个字符的ASCII数值 "哈"是例子 */ public class Ascii { public static void main(String[] args) { System.out.println('哈' + 0); } }
-
2/*输出十六进制数的十进制*/ public class Print { public static void main(String[] args) { //170 System.out.println(0xAA); //再输出一个数的十六进制表现形式 int x = 60; int temp1 = x/16; if (temp1 > 9) { char ch1 = (char)(temp1 - 10 + 'A' ); System.out.println(ch1); } else { } int y = x%16; System.out.println(y); } }
-
1//这是我的第一个正式的java小程序,很爽! /* 定义一个类叫做HelloJava */ public class HelloJava { /* 这是main函数 它能保证该类的独立运行 它会被JVM所调用 */ public static void main(String[] args) { /* 输出语句 它将输出括号中的内容 */ System.out.println("Hello java"); /*将"2"这个值赋给b这个byte型变量*/ byte b = 2; /* 将"b+3"这个值强制转换为byte类型 */ b = (byte)(b + 3);//相当于b+=3; /* 输出字符串"b = "与变量b相连接 这里的"+"是连接符 */ System.out.p
-
0超省浏览器
-
3lua脚本,想学啊没时间啊xF62D;
-
0加油啊大家!!!!
-
0你可以在此畅所欲言
-
2来了
-
1来了
-
0亲爱的各位吧友:欢迎来到安卓slg