You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
454 B

7 years ago
  1. public class StockBroker{
  2. public static void main(String[]args){
  3. Stock s1 = new Stock();
  4. Stock s2 = new Stock();
  5. s1.name = "Oracle";
  6. s1.symbol = "ORCL";
  7. s1.openingPrice = 205.0;
  8. s1.closingPrice = 203.0;
  9. s2.name = "Microsoft";
  10. s2.symbol = "MCST";
  11. s2.openingPrice = 120.0;
  12. s2.closingPrice = 125.0;
  13. s1.printStockInfo();
  14. System.out.println();
  15. s2.printStockInfo();
  16. }
  17. }