Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Garcom {
- public static void main(String args[]){
- Scanner leia = new Scanner(System.in);
- Scanner leia2 = new Scanner(System.in);
- System.out.print("Entre com o nome do usuario: ");
- String usuario = leia.next();
- System.out.print("Entre com a senha: ");
- String senha = leia.next();
- if ((usuario.equalsIgnoreCase("goku")) && (senha.equals("S3nh4"))) {
- System.out.print("\nEntre com a palavra 1: ");
- String palavra1 = leia.next().substring(0,1);
- System.out.print("Entre com a palavra 2: ");
- String palavra2 = leia.next().substring(0,1);
- System.out.print("Entre com a palavra 3: ");
- String palavra3 = leia.next().substring(0,1);
- System.out.print("\nEntre com o valor da conta: ");
- double conta = leia2.nextFloat();
- System.out.print("Entre com a quantidade de pessoas: ");
- int pessoas = leia2.nextInt();
- if ((palavra1.equalsIgnoreCase("S")) && (palavra2.equalsIgnoreCase("I")) && (palavra3.equalsIgnoreCase("M"))) {
- System.out.printf("\nTotal: R$ %2.2f", (conta/pessoas) + conta*0.1);
- }
- else {
- System.out.printf("\nTotal: R$ %2.2f", (conta/pessoas));
- }
- }
- else {
- System.out.print("\nAcesso negado!");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement