Esempio n. 1
0
 public static string Divide(string e1, string e2)
 {
     return(PCODE.Binary(e1, PCODE.Division, e2));
 }
Esempio n. 2
0
 public static string Add(string e1, string e2)
 {
     return(PCODE.Binary(e1, PCODE.Addition, e2));
 }
Esempio n. 3
0
 public static string Subtract(string e1, string e2)
 {
     return(PCODE.Binary(e1, PCODE.Subtraction, e2));
 }
Esempio n. 4
0
 public static string Mult(string e1, string e2)
 {
     return(PCODE.Binary(e1, PCODE.Times, e2));
 }