Computer Science, asked by chandu200114, 2 months ago

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 naadhinarayan
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