output java

Solutions on MaxInterview for output java by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "output java"
Veronica
18 Aug 2018
1class Output {
2    public static void main(String[] args) {
3    	
4        System.out.println("1. println ");
5        System.out.println("2. println ");
6    	
7        System.out.print("1. print ");
8        System.out.print("2. print");
9    }
10}
11