A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class FunctionDemo2
{
        public static void main(String[] args)
        {
                int x =10 ;
                int y =20;
                int c = sum(x,y);
                c+=10;
                System.out.print(c);
               
               
                        //函数调用:
                //sum (x,y);
                System.out.println();
               

        }
                public static int sum(int a,int b)
        {
                int c = a+b;
                return c;
               
                }
}

1 个回复

倒序浏览
这里是iOS区,你整Java代码?走错地方了?虽然我能看懂,哈哈。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马