×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Java
Posted by: Omer Dogu
Added: Apr 7, 2018 11:28 PM
Views: 2980
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package Section_1;
  7.  
  8. import java.io.PrintStream;
  9.  
  10. /**
  11.  *
  12.  * @author evereklili
  13.  */
  14. public class Test_8
  15. {
  16.     public static void main(String args[])
  17.     {
  18.         String k="*";
  19.         System.out.println("**********");
  20.         System.out.println(" *********");
  21.         System.out.println("  ********");
  22.         System.out.println("   *******");
  23.         System.out.println("    ******");
  24.         System.out.println("      ****");
  25.         System.out.println("        **");
  26.         System.out.println("         *");
  27.         System.out.println("          ");
  28.         System.out.print("  Ömer DOĞU ");
  29.      
  30.        
  31.         for(int i=0;i<=100;i++)
  32.         {
  33.           System.out.println(k);
  34.            
  35.            
  36.         }
  37.     }
  38.  
  39.      
  40. }