+ 2
Can anyone help me in Code 20 .Loan Calculator
Loan Calculator
2 Respostas
+ 10
import java.util.Scanner;
public class Program
{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int amount = scanner.nextInt();
for (int x = 0; x <3; x++){
int actual_amount = (amount * 10)/100;
amount = amount - actual_amount;
}
System.out.println(amount);
}
}
or
https://code.sololearn.com/c63KSVZsGQ54/?ref=app
0
Pls Help me Code Project 20: Loan Calculator .
I want code.