[Solved] multiple executed statements in one condition? help please


Yes, enclose them in curly braces:

if ( loan < 1000 ) {
    f = (loan * 100 / 1000);
    System.out.println( "The loan amount is $" + loan );
    System.out.println( "The finance charge is $" + f );
    System.out.println( "The total cost is $" + (loan + f) );
}

solved multiple executed statements in one condition? help please