Can some one help me???
I'm doing a basic Java course and need help with this code
I'm trying to get this line to work but keep coming back with a "'.class' expected"
I have tried different combinations but nothing is working for me.
public void paintComponent (Graphics page)
{
super.paintComponent (page);
for (int col; col<7; col++)
for(int row; row<3; row++)
page.setColor(Color.red);
page.drawLine( 0, 100, int status(0,0), 100);
Any ideas????