Ad Code

Shruti wants to make income of Rs. 600 daily from 10 % stock at rs 90 , so how much investment she have to make Write program in Java.

public class Invest {
 public static void main(String[] args){
 int stockprice = 90,profit = 10, income = 600;
 float investment = income * profit;
 float num = investment/stockprice;
 System.out.println("Number of investment = "+num);
 }
}
Reactions

Post a Comment

0 Comments