Advertisement
WesleyVicen

ATv 3 LIsta 2

Mar 27th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.84 KB | None | 0 0
  1. package lista2;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class atvtres {
  6.     public static void main(String[] args) {
  7.         Scanner scan = new Scanner(System.in);
  8.         System.out.print("DIgite seu nome: ");
  9.         String nome = scan.next();
  10.         System.out.print("Digite sua idade: ");
  11.         int idade = scan.nextInt();
  12.         if (idade == 10) {
  13.             System.out.println("Valor do plano fica R$ 30,00 "+nome);
  14.         } else if (idade <= 29 ){
  15.             System.out.println("Valor do plano fica R$ 60,00 "+nome);
  16.         } else if (idade <= 45) {
  17.             System.out.println("Valor do plano fica R$ 120,00 "+nome);
  18.         } else if (idade <= 59) {
  19.             System.out.println("Valor do plano fica R$ 150,00 "+nome);
  20.         } else if (idade <= 65) {
  21.             System.out.println("Valor do plano fica R$ 250,00 "+nome);
  22.         } else if (idade >= 65) {
  23.             System.out.println("Valor do plano fica R$ 400,00 "+ nome);
  24.         }
  25.     }
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement