Skip to content

Instantly share code, notes, and snippets.

@rubaiyat6370
Created September 19, 2014 14:23
Show Gist options
  • Save rubaiyat6370/f35a1bf3f8937a2ffec4 to your computer and use it in GitHub Desktop.
Save rubaiyat6370/f35a1bf3f8937a2ffec4 to your computer and use it in GitHub Desktop.
Assignment of OOP1 on Prefix
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