+ 3
java loan calculator
cannot find symbol at line 0 ??? I have used amount / 10 cause that's what 10% of amount reduces to. payment = amount / 10; // 10/100 * amount => 1/10 * amount => amount/10 https://code.sololearn.com/cFzy5d41ePle/?ref=app
7 Respuestas
+ 1
Hi!
Try with add int in the loop...
for(int x=1; x<=6; x++){...
/Regards Per B
+ 2
😥😒
+ 1
After fixing the missing "int" you will notice that your result is always a bit above the expected value. This is due to rounding errors. You can take a look at this code to understand it better
https://code.sololearn.com/ca5A14A10A15/?ref=app
+ 1
import java.util.Scanner;
public class Program
{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int amount = scanner.nextInt();
int loan;
//your code goes here
for(int i=1;i<=3;i++)
{
loan =amount/10;
amount-=loan;
}
System.out.println(amount);
}
}
0
Did you do as Per suggested, u forgot the int in your code,
int x=1
0
import java.util.Scanner;
public class Program
{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int amount = scanner.nextInt();
// int output=0;
int out1=amount;
int out;
//your code goes here
for(int i=0;i<3;i++){
out=(out1/100)*10;
out1=out1-out;
amount=out1;
}
System.out.println(amount);
}
}
I did this code, don't know what's wrong
0
import java.time.Month;
import java.util.Scanner;
import javax.naming.spi.DirStateFactory.Result;
public class Program
{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int amount = scanner.nextInt();
int loan;
int loan2;
int loan3;
int Month1;
int Month2;
int Month3;
//your code goes here
for(int i = 1; i <= 1; i++){
loan = amount * 10/100;
Month1 = amount - loan;
loan2 = Month1 * 10/100;
Month2 = Month1 - loan2;
loan3 = Month2 * 10/100;
Month3 = Month2 - loan3;
System.out.println(Month3);
}
}
}