+ 2
Write a Calculator program
Write a program to solve mathematical formulas https://code.sololearn.com/Wa7B3NeKm8P4/?ref=app
3 Answers
+ 2
To save the return value of a calculated result, how should I do it?
0
Cool, but do you have a question?
0
You can write:
var result = f(x,y);
where 'f' is the name of your function and 'x, y' are the arguments.