找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

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

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

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

新浪微博达人勋

public class JavaDemo06
{
        public static void main(String args[])
        {
                // 学生上学的年龄在5~7岁之间
                // 如果成绩在90分,或者年龄在7岁,则表示是一个学生
                int age = 6 ;
                int score = 90 ;
                // 5<=age>=7 : age>=5 age<=7
                // boolean flag = age>=5&&age<=7 ;
                boolean flag = age==7 | score==90 ;
                System.out.println(flag) ;
        }
};
2010-12-23 21:34:47

使用道具 举报

新浪微博达人勋

2010-12-23 21:35:10

使用道具 举报

新浪微博达人勋

public class JavaDemo07
{
        public static void main(String args[])
        {
                int i = 10 ;
                System.out.println(i>10&&i/0==0) ;
        }
};
2010-12-23 21:35:10

使用道具 举报

新浪微博达人勋

2010-12-23 21:35:27

使用道具 举报

头像被屏蔽

新浪微博达人勋

提示: 作者被禁止或删除 内容自动屏蔽
2010-12-23 21:35:27

使用道具 举报

新浪微博达人勋

2010-12-23 21:35:29

使用道具 举报

新浪微博达人勋

public class JavaDemo08
{
        public static void main(String args[])
        {
                // long ll = 1000 ;
                // int i = (int)ll ;
                int i = 1000 ;
                long ll = i ;
        }
};
2010-12-23 21:35:32

使用道具 举报

新浪微博达人勋

2010-12-23 21:35:46

使用道具 举报

新浪微博达人勋

public class JavaDemo09
{
        public static void main(String args[])
        {
                int i = 10 ;
                // i = i + 10 ;
                i += 10 ;
                System.out.println(i) ;
        }
};
2010-12-23 21:35:48

使用道具 举报

新浪微博达人勋

2010-12-23 21:36:06

使用道具 举报

新浪微博达人勋

public class JavaDemo10
{
        public static void main(String args[])
        {/*
                String str1 = "Hello," ;
                String str2 = "World!!" ;
                String str3 = str1 + str2 ;
                System.out.println(str3) ;
                */
                int i = 10 ;
                int j = 20 ;
                // 所有的数据都会自动向字符串转型
                System.out.println("i + j = "+(i+j)) ;
        }
};
2010-12-23 21:36:18

使用道具 举报

新浪微博达人勋

49999999999999999999999
2010-12-23 21:36:22

使用道具 举报

头像被屏蔽

新浪微博达人勋

提示: 作者被禁止或删除 内容自动屏蔽
2010-12-23 21:36:34

使用道具 举报

新浪微博达人勋

2010-12-23 21:36:45

使用道具 举报

新浪微博达人勋

大将军猴子 发表于 2010-12-23 21:30
你们好强 快 第一个就要诞生了

占了299和399,100楼给出一个吧~~~
2010-12-23 21:36:52

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部