[求助]请各位大哥给看看问题在那里?不能运行程序
class Mm
{
public Mm(int a,int b)
{
c=a;
d=b;
}
protected int c;
protected int d;
}
public class Pk {
/**
* @param args
*/
public static void main(String[] args) {
// TODO 自动生成方法存根
Mm mm=new Mm(1,2);
System.out.println(mm.c);
System.out.println(mm.d);
}
}
程序运行的提示是Could not find the main class. Program will exit.