//Litz Basic
//Это калькулятор
float one = ask("One number:");
float two = ask("Two number:");
string expression = ask("what expression?(+, -, /, *):");
float result;
if(expression == string:"+"){
result = one + two;
print("Your result:" + result);
}
if(expression == string:"-"){
result = one - two;
print("Your result:" + result);
...
Читать дальше »