Hàm đổi chỗ trong C#
C# 2016
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace demoDoiCho
{
class Program
{
static void Main(string[] args)
{
//Hàm đổi chỗ trong C#
//Demo nhap chuoi string
Console.Write("\nEnter string 1: ");
string a = Console.ReadLine();
Console.Write("\nEnter string 2: ");
string b = Console.ReadLine();
Console.Write("\nEnter string 3: ");
string c = Console.ReadLine();
//Trước khi đổi chỗ
Console.WriteLine("\nTruoc khi doi cho {0} {1} {2}", a, b , c);
string temp;
temp = a;
a = b;
b = c;
c = temp;
//Sau khi đổi chỗ
Console.WriteLine("\nSau khi doi cho {0} {1} {2}", a, b, c);
Console.Read();
}
}
}
0 nhận xét:
Post a Comment