Computer Science, asked by DORAEMONDA904, 11 months ago

Flow chart to swap two numbers using third variable

Answers

Answered by joshiapurva16
2

Answer:

Here the main logic is:

Temporary variable= Input variable1;

Input variable1=Input variable2;

Input variable2=Temporary variable;

Explanation:

1)copy value of first variable into temporary variable.

2)copy value of second variable into first variable.

3)copy value of temporary variable into second variable

Attachments:
Similar questions