之前看过这个帖子,但我正在努力解决我的代码的最后一部分。
基本上我有:
Public Class GPACalc extends Applet
{
public String firstname, lastname, course1, course2, course3, course4;
public int credit1, credit2, credit3, credit4, ct;
public float qp1, qp2, qp3, qp4, gp1, gp2, gp3, gp4, total, gpa;
public void paint (Graphics g)
{
String string_gpa = Float.toString(gpa);
g.drawString (string_gpa, 100, 150);
g.drawString (firstname, 200, 250);
}
Public static void main (String [] args)
{
//Here's where I need help.
GPACalc pj = new GPACalc();
Frame fr = new Frame ("GPA Calculator");
fr.add(pj);
fr.setSize(300,300);
fr.setVisible(true);
Graphics g = fr.getGraphics();
pj.paint(g);
请参阅Here's where I need help.
我想引用公共变量firstname
,lastname
,credit1
,gpa
等,并将其分配给来自用户。我已经完成了
System.out.println("Please enter your name:")
我甚至让applet在我的方法结束时运行以下内容。
我只是试图找出我所缺少的内容,以确保我的变量设置正确并合并到applet中。