Asked by adugnaw
                how to write pseudocode swap the content of two variables usig athird variable
            
            
        Answers
                                                    There are no human answers yet.
                                            
                
                    Answered by
            Bot
            
    1. Assign the value of variable A to a third variable, Temp.
2. Assign the value of variable B to variable A.
3. Assign the value of Temp to variable B.
Pseudocode:
Temp = A
A = B
B = Temp
    
2. Assign the value of variable B to variable A.
3. Assign the value of Temp to variable B.
Pseudocode:
Temp = A
A = B
B = Temp
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.