Created
September 19, 2014 14:23
-
-
Save rubaiyat6370/f35a1bf3f8937a2ffec4 to your computer and use it in GitHub Desktop.
Assignment of OOP1 on Prefix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.univdhaka.iit.prefix; | |
import java.util.*; | |
public class MainClass { | |
public static void main(String args[]) { | |
Scanner input = new Scanner(System.in); | |
String s = input.nextLine(); | |
AdvancedCalculator advancedObject = new AdvancedCalculator(s); | |
advancedObject.Result(); | |
input.close(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment