In most programming languages, you can mix and match strings with variables during output. However, I cannot find a good way to do this. Here is my code:
Prompt A,B β(A^2+B^2)->C If iPart(C)β C Then Disp "C = β(",C Else Disp "C = ",C End Goto ED Label ED
Unfortunately, with this code, he finishes printing as follows:
A? 3 B? 5 C = β( 34 Done
This is not what I want. I would like to be able to print C = β(34) , but currently I can not find a way to mix variables and strings. Any help would be appreciated.
source share