URI Problem (Type of Fuel) 1134:
Type of Fuel is a basic problem on URI online judge for novice problem solver.
You can find details on this Link.
import java.util.Scanner; /** * @Author : Muhammad Harun-Or-Roshid * @Date : Oct 19, 2016 * @Time : 1:00:43 AM */ public class Uri1134 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int alcohol = 0, gasoline = 0, diesel = 0; while (true) { int x = sc.nextInt(); if (x == 4) { break; } else if (x == 1) { alcohol++; } else if (x == 2) { gasoline++; } else if (x == 3) { diesel++; } } System.out.println("MUITO OBRIGADO"); System.out.println("Alcool: " + alcohol); System.out.println("Gasolina: " + gasoline); System.out.println("Diesel: " + diesel); } }