Switch-case is used by devolopers for defining to computer conditional statements. Switch-case expressions have same functions with if blocks.Using of switch case use less common than if blocks wherefore if blocks are more useful in projects of software. Structere of Switch-case; switch( parameter){ case x: ......// if parater is x, these codes are run that untill break expression.Does not run any other statement break's below. break; case a: ......// if parater is a, these codes are run that untill break expression.Does not run any other statement break's below. break; } public class Main { public static void main ( String [] args) { int BestTeam = 6 ; switch ( BestTeam ){ case 1 : System . out .println( "Best Team in Spain is Barcelona" ); break ; case 2 : System . out .println( "Best Team in İtaly is Juventus" ); break ; case 3 : ...