java 怎么把两个类的数值都输出

importjava.util.Scanner;publicclasstext{publicstaticvoidmain(Stringargs[]){inta=test1... import java.util.Scanner;
public class text
{
public static void main (String args[])
{
int a= test1();
int b= test2();
int c= test3();
int d= test4();
int e= test5();
int f= test6();
System.out.println("1到100求和,test1的结果为 "+a);
System.out.println("1到100求和,test2的结果为 "+b);
System.out.println("1到100求和,test3的结果为 "+c);
System.out.println("1到10求乘积,test4的结果为 "+d);
System.out.println("1到10求乘积,test5的结果为 "+e);
System.out.println("1到10求乘积,test6的结果为 "+f);

}
private static int test1()
{

}
private static int test2()
{

}
private static int test3()
{

}
private static int test4()
{

}
private static int test5()
{

}
private static int test6()
{

}

class test7 {
public static void main(String args[]) {
int max;
Scanner in = new Scanner(System.in);
System.out.println("比较三个数的大小,并输出最大值。");
System.out.println("先输入第一个数,并回车。");
int a = in.nextInt();
System.out.println("再输入第二个数并回车。");
int b = in.nextInt();
System.out.println("再输入第三个数并回车。");
int c = in.nextInt();
max = a > b ? a : b;
max = max > c ? max : c;
System.out.println(max);
}
}

我调试了这段代码只显示了test1-6,类test7 并没有执行 怎么回事啊 求大神不吝赐教,新手
展开
 我来答
198901245631
推荐于2018-04-13 · TA获得超过3.5万个赞
知道大有可为答主
回答量:9037
采纳率:92%
帮助的人:1747万
展开全部
这个的话可以再main方法中同时调用需要输出的两个类的方法(前提是类方法必须有返回值),举例:

User1 user1 = new User1();//获取第一个类
User2 user2 = new User2();//获取第二个类
String username1 = user1.getUserName();//获取第一个类方法getUserName中的返回值
String username2= user2.getUserName();//获取第二个类方法getUserName中的返回值
System.out.println(username1 );//输出第一个类中的返回结果
System.out.println(username1 );//输出第二个类中的返回结果
备注:类方法调用的时候,值需要实例化一个相应的类对象,之后通过方法调用的形式来获取到相应的值,两个或多个的也同样是这个思路。
wokao_wg
2013-09-24 · TA获得超过107个赞
知道小有建树答主
回答量:204
采纳率:0%
帮助的人:80.6万
展开全部

????你确定这样能运行?编译都报错的额。。

The method main cannot be declared static; static methods can only be declared in a static or top level type

改成这样才可以运行:

public class Text {
public static void main(String[] args) {
System.out.println("this is Text Main!");
testa.main(args);
}
static class  testa{
public static void main(String[] args) {
System.out.println("this is testa");
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
1123419ql
2013-09-24 · TA获得超过302个赞
知道小有建树答主
回答量:306
采纳率:0%
帮助的人:181万
展开全部
在第一个main方法最后加上 test7.main(args);
追问
新手不懂....能截图或写出来吗
追答
public static void main (String args[])
{
int a= test1();
int b= test2();
int c= test3();
int d= test4();
int e= test5();
int f= test6();
System.out.println("1到100求和,test1的结果为 "+a);
System.out.println("1到100求和,test2的结果为 "+b);
System.out.println("1到100求和,test3的结果为 "+c);
System.out.println("1到10求乘积,test4的结果为 "+d);
System.out.println("1到10求乘积,test5的结果为 "+e);
System.out.println("1到10求乘积,test6的结果为 "+f);

//加上下一行

test7.main(args);
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
水蓝魔瞳
2013-09-24 · 超过37用户采纳过TA的回答
知道小有建树答主
回答量:130
采纳率:0%
帮助的人:41.1万
展开全部
main函数只有一个入口,你执行了text的main,就不会执行test7 的main函数了
追问
那我应该怎么改,才能把两个都输出
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
孤城魔鬼
2013-09-24 · TA获得超过253个赞
知道小有建树答主
回答量:338
采纳率:100%
帮助的人:195万
展开全部
test7的main方法改一下,在第一个main方法中调用
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式