Swati bought 600 shares of stock at a price of Rs 20 per share. She must pay her stock broker a 2% commission for the transaction.
public class Main {
public static void main(String[] args) {
System.out.println("Commission: " + 600 * 20 * 0.02);
}
}
Comments
Leave a comment