This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public static void main(String[] args) { | |
// System.out.println("Hello world!"); | |
for (int i = 0; i < 6; i++) { | |
for (int j = 0; j < 5; j++) { | |
if (i>j) | |
System.out.print(" * "); | |
} | |
System.out.print("\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****************************************************************************** | |
Online Java Compiler. | |
Code, Compile, Run and Debug java program online. | |
Write your code in this editor and press "Run" button to execute it. | |
*******************************************************************************/ | |
public class Main | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
import java.text.*; | |
import java.util.Date; | |
public class Tex { | |
String strToprintDt1; | |
String strToprintDt2; | |
String CurrntDatevar; | |
String[] ddfrmdt; |