找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

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

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

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

新浪微博达人勋

public class JavaDemo05
{
        public static void main(String args[])
        {
                int a[][] = {{1,3},{2,3,4,5},{2,3,4}} ;
                for(int i=0;i<a.length;i++)
                {
                        for(int j=0;j<a[i].length;j++)
                        {
                                System.out.print(a[i][j]+"\t") ;
                        }
                        System.out.println("") ;
                }
        }
};
2010-12-23 21:54:05

使用道具 举报

新浪微博达人勋

有袜子拿
2010-12-23 21:55:24

使用道具 举报

新浪微博达人勋

袜袜袜。。。
2010-12-23 21:56:02

使用道具 举报

新浪微博达人勋

555555555555555555555
2010-12-23 21:56:08

使用道具 举报

新浪微博达人勋

2010-12-23 21:56:26

使用道具 举报

新浪微博达人勋

试运气
2010-12-23 21:56:42

使用道具 举报

新浪微博达人勋

2010-12-23 21:56:58

使用道具 举报

新浪微博达人勋

2010-12-23 21:57:10

使用道具 举报

新浪微博达人勋

2010-12-23 21:57:33

使用道具 举报

新浪微博达人勋

2010-12-23 21:57:44

使用道具 举报

新浪微博达人勋

public class JavaDemo06
{
        public static void main(String args[])
        {
                printTab() ;
        }
        // 定义一个方法,此方法用于打印Hello World
        // public static必须加上,因为是由主方法直接去调用
        // void:表示此方法不需要任何返回值
        // print:表示方法的名称,可以任意编写
        // 方法名称编写时:第一个单词首字母小写,之后每个单词的首字母大写
        public static void printTab()
        {
                System.out.println("************************") ;
                System.out.println("*      Hello World     *") ;
                System.out.println("*      www.mldn.cn     *") ;
                System.out.println("************************") ;       
        }
};
2010-12-23 21:58:11

使用道具 举报

新浪微博达人勋

public class JavaDemo07
{
        public static void main(String args[])
        {
                int k = add(10,30) ;
                // int float String
                System.out.println("两数相加之后为:"+k) ;
        }
        // 两个整数相加
        // x和y是在add方法中起作用,所以这种变量称为局部变量
        public static int add(int x,int y)
        {
                int temp = x + y ;
                // 如果有返回值,则要加入return语句
                return temp ;
        }
};
2010-12-23 21:58:34

使用道具 举报

新浪微博达人勋

要奖章~~
2010-12-23 21:58:41

使用道具 举报

新浪微博达人勋

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

使用道具 举报

新浪微博达人勋

public class JavaDemo08
{
        public static void main(String args[])
        {
                add(10.0f) ;
        }
        public static void add()
        {
                System.out.println("** 1、无参的add方法.") ;
        }
        public static void add(int i)
        {
                System.out.println("** 2、有一个参数的add方法。") ;
        }
        public static void add(int i,int j)
        {
                System.out.println("** 3、有两个参数的add方法。") ;
        }
        public static void add(float i)
        {
                System.out.println("** 4、float参数的add方法。") ;
        }
};
2010-12-23 21:58:56

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部