레플릿
004 - Creating Variables and Printing 4
Creating Variables and Printing 4 Print out the following pattern: * ** *** ## # class Main { public static void main(String[] args) { System.out.println("*"); System.out.println("**"); System.out.println("***"); System.out.println("##"); System.out.println("#"); } }
003 - Creating Variables and Printing 3
Creating Variables and Printing 3 For you to do: Create a boolean variable called "isTrue" and set it to false Create a double variable called "money" and set it to 99999.99 Print the variable "money" first Then print the variable "isTrue" without skipping to the next line. class Main { public static void main(String[] args) { boolean isTrue=false; double monet=99999.99; System.out.print(monet);..