File size: 529 Bytes
7349271
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Complete the following program body so that it prints the complete sentence:
Java-programming is surprisingly easy.


Note that the program has a print statement before and after the part of the program to be written.
"""


import java.util.Random;

public class Test{
    public static void main(String[] args){
        final Random r = new Random();
        
        
        System.out.print("Java-programming");
        
        System.out.print(" is surprisingly ");
        
        System.out.println("easy.");
    }
}