VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • C#教程之C#-练习题

1、输入两个数,将两个数交换后输出

复制代码
 1 using System;
 2 
 3 namespace ExchangeTwoNumbers
 4 {
 5     class ExchangeTwoNumbers
 6     {
 7         static void Main(string[] args)
 8         {
 9             Console.WriteLine("Enter two integers and end with the enter key");
10             Console.Write("Please input a:");
11             int a = Convert.ToInt32(Console.ReadLine());
12             Console.Write("Please input b:");
13             int b = Convert.ToInt32(Console.ReadLine());
14 
15             a = a - b;
16             b = a + b;
17             a = b - a;
18 
19             Console.WriteLine("a is:{0}", a);
20             Console.WriteLine("b is:{0}", b);
21             Console.ReadKey();
22         }
23     }
24 }
复制代码

结果

转载请注明作者和原文链接(最近发现有些文章被转载,竟然作者和出处都变了。 ) 

☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ 
                         非学无以广才,非志无以成学 
                                    ——定一个小目标,每天进步一点点 
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

相关教程