Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program {
- public static void Main (string[] args) {
- /* Déclaration des variables */
- int a = 3;
- int b = 2;
- /*Permutation des variables*/
- int temp = a;
- a = b;
- b = temp;
- /*Affichage des variables après la permutation*/
- Console.WriteLine ("La valeur de a est : " + a);
- Console.WriteLine ("La valeur de b est : " + b);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement