-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.java
37 lines (28 loc) · 1.12 KB
/
main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit this template
*/
package hoja3.hoja3;
import java.util.Scanner;
/**
*
* @author Eloy
*/
public class Ejercicio1 {
public static void main(String[] args) {
/*1. Un economista te ha encargado un programa para realizar cálculos con el IVA.
La aplicación debe solicitar la base imponible y el IVA que se debe aplicar.
Muestra en pantalla el importe correspondiente al IVA y al total.*/
Scanner teclado=new Scanner(System.in);
double baseimponible;
double IVA;
System.out.println("Introduce la base imponible a aplicar");
baseimponible=teclado.nextInt();
System.out.println("Introduce el IVA a aplicar");
IVAr= teclado.nextDouble();
double IVAr=(baseimponible*IVA/100); //IVA total a aplicar
double total=IVA+baseimponible;
System.out.println("El importe correspondiente al IVA es: "+ IVAr );
System.out.println("El importe total es: "+total);
}
}