Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 297 Bytes

File metadata and controls

21 lines (15 loc) · 297 Bytes

Back

P1.1

Write a program that prints a greeting of your choice, perhaps in a language other than English.


Solution:

import static java.lang.System.out;

class P0101 
{
  public static void main(String[] args) 
  {
    out.println("Magandang Umaga!");
  }
}