Back To Java Flow of Control Index
//program to input three numbers and find smallest of three numbers using if-else statement public class smallestthree { public static void main(String[] args) { int a,b,c,min; a=12; b=10; c=11; min=a; if(b