@weirdlike Looks like right now there is a bug with a space at the top of the code, but if you stack the first line of code next to your first markup of "code" it can kill it. Example...
package
{
import flash.display.*;
import flash.events.*;
public class main extends MovieClip
{
function main():void
{
secondClass(stage);
//call to class and pass the stage as an argument
}
}
}
[code]import java.io.*;
class Tables
{ public static void main(String s[])throws IOException { int x,y; InputStreamReader reader = new InputStreamReader (System.in); BufferedReader input = new BufferedReader (reader); System.out.println("Enter the number whose table you want to see..."); String xy = input.readLine(); x = Integer.parseInt(xy); System.out.println("Here is your table :-"); for (y=x; y
import java.io.*;
class Tables
{
public static void main(String s[])throws IOException
{
int x,y;
InputStreamReader reader = new InputStreamReader (System.in);
BufferedReader input = new BufferedReader (reader);
System.out.println("Enter the number whose table you want to see...");
String xy = input.readLine();
x = Integer.parseInt(xy);
System.out.println("Here is your table :-");
for (y=x;y<=x*10;y=y+x)
{
System.out.println(+y);
}
}
}