What will be the output of the following Java program?
class output {
 public static void main(String args[]) { 
double a, b,c;
 a = 5/3; 
b = 5/8;
 c=7/9; 
 System.out.println(a);
 System.out.println(b);
 System.out.println(c); 
}

Posted on by