I'am a little bit confused when I want to insert code
in PHP-Fusion forum, because all lines are located
by left side. There is no structure of the code!
For example lets take one simple java program:
CodeDownload
import java.util.Scanner;
class band2{
public static void main(String args[]){
Scanner myScanner=new Scanner(System.in);
double amount;
System.out.print("Enter your amount: ");
amount=myScanner.nextDouble();
amount=amount+25.00;
System.out.print("We will bill $");
System.out.print(amount);
System.out.println("to your credit card.");
}
}
How you see, the code does not have any structure...
It should be in this way(see the attachment)...
So any ideas how to fix it ? Maybe I do smth wrong ?