Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package scuola;
- import java.util.*;
- public class IVA1 {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Scanner input;
- input=new Scanner (System.in);
- int scatti, scatp;
- double boll;
- System.out.println("scatti lettura precedente ");
- scatp=input.nextInt();
- System.out.println("numero scatti ");
- scatti=input.nextInt();
- boll=26.80;
- if (scatp<150){
- boll=boll+scatti*0.10;
- }
- else
- {
- boll=boll+scatti*0.20;
- }
- System.out.println("bolletta: "+boll);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment