找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

搜索
CDD 法语助手
楼主: 大将军猴子

水区抢楼活动(结束)圣诞福袜勋章一个免费试吃名额等

13190
回复
190292
查看
  [ 复制链接 ]

新浪微博达人勋

好快啊
2010-12-23 21:30:25

使用道具 举报

新浪微博达人勋

你们好强 快 第一个就要诞生了
2010-12-23 21:30:36

使用道具 举报

新浪微博达人勋

49999999999999999999999
2010-12-23 21:30:36

使用道具 举报

新浪微博达人勋

public class JavaDemo06
{
        public static void main(String args[])
        {
                boolean flag = true ;
                flag = false ;
                // 学习过C语言,在C语言中,用非零的数字表示true,用零表示false
                flag = 1 ;
                System.out.println(flag) ;
        }
};
2010-12-23 21:30:39

使用道具 举报

新浪微博达人勋

还有80楼
2010-12-23 21:30:48

使用道具 举报

新浪微博达人勋

public class JavaDemo07
{
        public static void main(String args[])
        {
                // 如果flag为true则表示是一个学生,打印信息
                boolean flag = true ;
                // if条件里使用的也是一个真或假的判断
                if(flag)        // flag==true
                {
                        System.out.println("我是一个学生。") ;
                }
        }
};
2010-12-23 21:30:55

使用道具 举报

新浪微博达人勋

啦啦啦啦啦啦啦
2010-12-23 21:31:00

使用道具 举报

新浪微博达人勋

public class JavaDemo08
{
        public static void main(String args[])
        {
                // 使用单引号括起来的一个字符(字母、数字)
                char c = 'A' ;
                char x = '\'' ;
                System.out.print("------------\"---------------") ;
                System.out.print(x) ;
                System.out.print(c) ;
                // System.out.print("aaaa") ;
                System.out.print("aaaa\\") ;
        }
};
2010-12-23 21:31:19

使用道具 举报

新浪微博达人勋

2010-12-23 21:31:25

使用道具 举报

新浪微博达人勋

49999999999999
2010-12-23 21:31:30

使用道具 举报

新浪微博达人勋

public class JavaDemo09
{
        public static void main(String args[])
        {
                // 使用单引号括起来的一个字符(字母、数字)
                char c = 'A' ;
                // 把一个字符赋给了一个整型变量
                int i = c ;
                System.out.println(i) ;
        }
};
2010-12-23 21:31:44

使用道具 举报

新浪微博达人勋

public class JavaDemo10
{
        public static void main(String args[])
        {
                System.out.println(Short.MAX_VALUE) ;
                System.out.println(Double.MAX_VALUE) ;
                System.out.println(Byte.MAX_VALUE) ;
                System.out.println(Byte.MIN_VALUE) ;
        }
};
2010-12-23 21:32:06

使用道具 举报

新浪微博达人勋

2010-12-23 21:32:08

使用道具 举报

新浪微博达人勋

49999999999999999999999
2010-12-23 21:32:39

使用道具 举报

新浪微博达人勋

想吃红烧肉 发表于 2010-12-23 21:30
99结尾的都拿了,不信没有

499哪肉肉
2010-12-23 21:32:51

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部