怎么在主函数里调用后面的函数?JAVA

mportjava.util.Scanner;publicclassCH06_01{publicstaticvoidmain(String[]args){Scanneri... mport java.util.Scanner;
public class CH06_01 {
public static void main(String[]args){
Scanner input=new Scanner(System.in);
System.out.println("please enter the first number");
int a =input.nextInt();
System.out.println("please enter the second number");
int b =input.nextInt();
System.out.println("最大公约数为"+b);
}
int gcd(int a,int b){
int r=a%b;
while(r!=0){
a=b;
b=r;
r=a%b;}
return b
展开
 我来答
767036265
2013-11-24 · TA获得超过186个赞
知道小有建树答主
回答量:313
采纳率:100%
帮助的人:139万
展开全部
import java.util.Scanner;
public class CH06_01 {
public static void main(String[]args){
Scanner input=new Scanner(System.in);
System.out.println("please enter the first number");
int a =input.nextInt();
System.out.println("please enter the second number");
int b =input.nextInt();
System.out.println("最大公约数为"+b);
System.out.println(gcd(a,b));
}
public static int gcd(int a,int b){
int r=a%b;
while(r!=0){
a=b;
b=r;
r=a%b;
}
return b;
}
}

注意编写代码的格式,如果在同一个类中在主函数里调用方法,方法必须为static修饰,原因很简单,main方法为类方法,类方法只能调用类变量和类方法。如果是多个类就创建对象,然后通过对象来调用就行…………
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xb_447215
2013-11-24 · TA获得超过2038个赞
知道大有可为答主
回答量:3702
采纳率:0%
帮助的人:3916万
展开全部
你只需要使用类名.方法名就可以了
public static void main(String[]args){

CH06_01 ch=new CH06_01();

Scanner input=new Scanner(System.in);
System.out.println("please enter the first number");
int a =input.nextInt();
System.out.println("please enter the second number");
int b =input.nextInt();

ch.gcd(a,b);

System.out.println("最大公约数为"+b);
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
后青春的繁华国
2013-11-24
知道答主
回答量:22
采纳率:0%
帮助的人:12.2万
展开全部
一下是源代码:(注意楼主,主函数中不鞥用a,b,这里用m,n代替)
import java.util.Scanner;
public class CH06_01 {
public static void main(String[]args){
Scanner input=new Scanner(System.in);
System.out.println("please enter the first number");
int m =input.nextInt();
System.out.println("please enter the second number");
int n =input.nextInt();
System.out.println("最大公约数为"+b);
CH06_01 p=new CH06_01();
p.gcd(m,n);
}
int gcd(int a,int b){
int r=a%b;
while(r!=0){
a=b;
b=r;
r=a%b;}
return b;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式