Advertisement
PradoWilder

Permutation_des_nombres_a_et_b

Apr 7th, 2024
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. using System;
  2.  
  3. class Program {
  4. public static void Main (string[] args) {
  5. /* Déclaration des variables */
  6. int a = 3;
  7. int b = 2;
  8.  
  9. /*Permutation des variables*/
  10. int temp = a;
  11. a = b;
  12. b = temp;
  13.  
  14. /*Affichage des variables après la permutation*/
  15.  
  16. Console.WriteLine ("La valeur de a est : " + a);
  17. Console.WriteLine ("La valeur de b est : " + b);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement