Computer Science, asked by anuj, 1 year ago

Write a gui program to print the largest numbers among 3.

Answers

Answered by sikhi
2
int a=3,b=4,c=5;

If(a>b&&a>c)
System.out.print(""+a);
If(b>a&&b>c)
System.out.print(""+b);
If(c>b&&c>a)
System.out.print(""+c);



This program is written in Java program. It's GUI language.

sikhi: Hope this will help you
Similar questions