Scanner sc = new Scanner(System.in);
// Username request
System.out.print("Username:\n");
String name = sc.nextLine();
// Monthly income request
System.out.print("What is your monthly income:\n");
double income = sc.nextDouble();
sum = (income * 12);
System.out.println("Hello, " + name);
System.out.printf("Your annual income is: %.2f " + "$" + (sum * 0.30));
Scanner sc = new Scanner(System.in);
// Username request
System.out.print("Username:\n");
String name = sc.nextLine();
// Monthly income request
System.out.print("What is your monthly income:\n");
double income = sc.nextDouble();
sum = (income * 12);
System.out.println("Hello, " + name);
System.out.printf("Your annual income is: %.2f " + "$" + (sum * 0.30));
}
}
Du deklarerar variabeln income tv gnger i koden.
"%" r reserverad fr att skriva ut en variabel i formaterade strngar.
T.ex.
Kod:
String name = "Pelle";
System.out.printf("Hej %s!", name);
Flashback finansieras genom donationer frn vra medlemmar och beskare. Det r med hjlp av dig vi kan fortstta erbjuda en fri samhllsdebatt. Tack fr ditt std!