Back

IT-PF01

Case Problem 2

EasyCase Study1 file
0 visits

score: 10/10

Using the single print method and escape sequence, display the following output. Comment your Full Name at the last line of your source code. Save your file as case2surname.java.

     *
    ***
   *****
  *******
 *********
***********
     *
     *

code

case3angulo.java
public class case2angulo {
  public static void main(String[] args) {
    System.out.println("\t\b*\n\t\b\b***\n\t\b\b\b*****\n\t\b\b\b\b*******\n\t\b\b\b\b\b*********\n\t\b\b\b\b\b\b************\n\t\b*\n\t\b*\n");
  }
}
// Angulo, Cedric Bryan M.

submitted output