package apples;
public class boy {
public static void main (String []args) {
double coffee;
coffee = 5.28;
System.out.print("I want ");
System.out.print(coffee);
System.out.println(" movies");
}
}
package apples;
public class boy {
public static void main (String []args) {
double coffee;
coffee = 5.28;
System.out.print("I want ");
System.out.print(coffee);
System.out.println(" movies");
System.out.print("apples");
}
}
Comments
Post a Comment