15 years ago a person invested some amount at 14 annual interest . Now the amount is 91347, what is the amount he invested
Answers
Answered by
1
Answer:
public class main
{
public static void main()
{
int a = 91347 ;
int p = (a * 100)/15*14 ;
System.out.println(p) ;
}
}
Explanation:
Easy
Similar questions