找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

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

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

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

新浪微博达人勋

public class JavaDemo16
{
        public static void main(String args[])
        {
                for (int i=1;i<=10;i++)
                {
                        // 如果是5,则不打印
                        if(i==5)
                        {
                                // 不打印
                                continue ;
                        }
                        System.out.print(i+"\t") ;
                }
        }
};
2010-12-23 21:51:13

使用道具 举报

新浪微博达人勋

public class JavaDemo17
{
        public static void main(String args[])
        {
                for (int i=1;i<=100;i++)
                {
                        if(i>=40&&i<=50)
                        {
                                continue ;
                        }
                        if(i%2==0)
                        {
                                System.out.print(i+"\t") ;
                        }
                }
        }
};
2010-12-23 21:51:32

使用道具 举报

新浪微博达人勋

2010-12-23 21:51:34

使用道具 举报

新浪微博达人勋

要奖章~~
2010-12-23 21:52:04

使用道具 举报

新浪微博达人勋

2010-12-23 21:52:13

使用道具 举报

新浪微博达人勋

49999999999999999999999
2010-12-23 21:52:14

使用道具 举报

新浪微博达人勋

2010-12-23 21:52:25

使用道具 举报

新浪微博达人勋

public class JavaDemo01
{
        public static void main(String args[])
        {
                // 声明了一个数组
                int i[] = null ;
                // 使用数组?
                i = new int[10] ;
                // 数组的使用看的是下标
                // 0 1 2 3 4 5 6 7 8 9
                // 如果要打印第1个数据
                System.out.println(i[0]) ;
        }
};
2010-12-23 21:52:34

使用道具 举报

新浪微博达人勋

public class JavaDemo02
{
        public static void main(String args[])
        {
                // 声明了一个数组
                int i[] = null ;
                // 使用数组?
                i = new int[10] ;
                // i[0]  ~ i[9]
                for (int x=0;x<10;x++)
                {
                        System.out.println("i["+x+"] = "+i[x]) ;
                }
        }
};
2010-12-23 21:53:01

使用道具 举报

新浪微博达人勋

public class JavaDemo03
{
        public static void main(String args[])
        {
                // 声明了一个数组
                int i[] = null ;
                // 使用数组?
                i = new int[10] ;
                // i[0]  ~ i[9]
               
                for (int x=0;x<10;x++)
                {
                        i[x] = x * x ;
                }
                System.out.println("--------- 改变之前------------------") ;
                for (int x=0;x<10;x++)
                {
                        System.out.println("i["+x+"] = "+i[x]) ;
                }
                // 为开辟的堆内存空间声明一个别名
                int y[] = i ;
                // 将y中的内容进行修改
                for (int x=0;x<10;x++)
                {
                        y[x] = x + 1 ;
                }
                System.out.println("--------- 改变之后------------------") ;
                for (int x=0;x<10;x++)
                {
                        System.out.println("i["+x+"] = "+i[x]) ;
                }
        }
};
2010-12-23 21:53:23

使用道具 举报

新浪微博达人勋

我拼的是随机奖,\(^o^)/~
2010-12-23 21:53:24

使用道具 举报

新浪微博达人勋

555555555555555555555
2010-12-23 21:53:37

使用道具 举报

新浪微博达人勋

public class JavaDemo04
{
        public static void main(String args[])
        {
                int i[] = {1,2,3,4,5,6,7,8,23,41,421,513245,13,23,13,143,24} ;
                System.out.println("数组大小:"+i.length) ;
                for (int x=0;x<i.length;x++)
                {
                        System.out.println(i[x]) ;
                }
        }
};
2010-12-23 21:53:47

使用道具 举报

新浪微博达人勋

49999999999999999999999
2010-12-23 21:53:59

使用道具 举报

新浪微博达人勋

这把大家给累的。
2010-12-23 21:53:59

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部