摘要: 一.运算符1.算术运算符+ - * / % ++ --public class Test7 { public static void main(String[] args) { int x = 10; int y = 3; float f = 3... 阅读全文
posted @ 2015-12-09 14:59 Dragon&Hmm 阅读(127) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner;public class Student { public static void main(String[] args) { byte money; System.out.println("您现在有多少钱?"); ... 阅读全文
posted @ 2015-12-09 00:56 Dragon&Hmm 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1.变量必须拥有的类型2.变量必须拥有的名字变量:具备名字和类型的可以存放类型匹配的数据的量public class Student { public static void main(String[] args) { byte x = 127; short y =... 阅读全文
posted @ 2015-12-09 00:28 Dragon&Hmm 阅读(106) 评论(0) 推荐(0) 编辑