我正在尝试编写一个程序,该程序将一个类中的两个数字相加并将其添加到另一个数字中。这是第一堂课:
public class Add{
public static void main(String[] args) {
int a = 5;
int b = 5;
int c = a + b;
System.out.println(c);
}
}
第二个:
public class AddExtra{
public static void main(String[] args) {
Add a = new Add();
int b = 5;
int c = a.value+b;
System.out.println(c);
}
}
我怎样才能让它工作?谢谢。