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 并没有执行 怎么回事啊 求大神不吝赐教,新手 展开
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 并没有执行 怎么回事啊 求大神不吝赐教,新手 展开
5个回答
展开全部
这个的话可以再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 );//输出第二个类中的返回结果
备注:类方法调用的时候,值需要实例化一个相应的类对象,之后通过方法调用的形式来获取到相应的值,两个或多个的也同样是这个思路。
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 );//输出第二个类中的返回结果
备注:类方法调用的时候,值需要实例化一个相应的类对象,之后通过方法调用的形式来获取到相应的值,两个或多个的也同样是这个思路。
展开全部
????你确定这样能运行?编译都报错的额。。
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");
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在第一个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);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
main函数只有一个入口,你执行了text的main,就不会执行test7 的main函数了
追问
那我应该怎么改,才能把两个都输出
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
test7的main方法改一下,在第一个main方法中调用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询