Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package scuola;
- import java.util.*;
- public class Primo {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Scanner input;
- input= new Scanner (System.in);
- String prod;
- System.out.println("inserire nome prodotto");
- prod=input.nextLine();
- switch (prod)
- {
- case "Il Cavaliere del Tempo": System.out.println("prezzo: €15,99"); break;
- case "Il Falco e il Leone": System.out.println("prezzo: €19,99"); break;
- default: System.out.println("prodotto non trovato");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment