The problem is: Whenever you type in 2 numbers, as required, the results are lined one after another, what creates an image of a huge number. Does anyone know a code/command to separate the results of arithmetic operations into rows? Thank you beforehand!
            Asked
            
        
        
            Active
            
        
            Viewed 899 times
        
    1
            
            
        - 
                    Share with us what you've tried so far. We're happy to help, but this is not a free programming service! – Joe Jan 12 '17 at 13:07
 - 
                    To be honest, I have tried array["e.g."][1][1] = "e.g." and tried with \r\n, but it did not work. Basic is a programming language I require to work in for the graduation work, but today is the first time I even opened it. – Cyber Bot Jan 12 '17 at 13:11
 - 
                    MADE IT WORK!! Used Returned Value = Text Window. Read Number() under every variable and it worked! Thanks anyway, @thickguru – Cyber Bot Jan 12 '17 at 13:31
 - 
                    That's great. Add it as an answer so it can help others in the future. – Joe Jan 12 '17 at 13:50
 
1 Answers
0
            
            
        Between writing out the two numbers you can add TextWindow.WriteLine() that will but the cursor on to the next row so the second number will be written out below.
        Tbeakl
        
- 1
 - 2