Java 方法的调用 格式

class Demo04
{
public static void main(String[] args)
{
//调用方法 方法名(实参列表)
//print();

//method(20);
t(14,25);

}

//输出 hello world
//public static void print(){
//System.out.println("hello world");
//}

//public static void method(int n){
//for(int i=1;i<=n;i++){
//System.out.println(i);
// }

//}
//写一个方法写一个a和b的和,和要返回
public static int t(int a,int b){
int c=0;
c=a+b;
System.out.println(c);
return c;
}

 

 

 

 

//求1-N的和的方法
//方法必须定义在类中
//public static int add(int n)
}

 

 

 

posted @ 2022-04-21 15:29  猫java猫  阅读(110)  评论(0编辑  收藏  举报