I am a newbie working through Deitel & Deitel without tutor.
I am unable to draw an adjacent line of asterisks in an Applet with a for loop using the g.drawstring method :-
for(int i4=1; i4 <= num4; i4++)
{
if ( i4 <= num4 )
g.drawString( "*" + num4, 25, 45 );
It does work as System.out.print( ' * ' )in an application.
Full txt of progam attached.
I would greatly appreciate any help!
Thankyou


I am a newbie working through Deitel & Deitel without tutor.
Reply With Quote


Bookmarks