浏览 1602 次
锁定老帖子 主题:2-1 变量的赋值
精华帖 (0) :: 良好帖 (0) :: 新手帖 (1) :: 隐藏帖 (7)
|
|
---|---|
作者 | 正文 |
发表时间:2009-07-06
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace VarTest { class Program { static void Main(string[] args) { string str; double Sum = 0, a, b, c; a = 20; b = 30; c = 40; Sum = a + b + c; str = "a+b+c="; Console.Write(str); Console.WriteLine("{0}",Sum); Console.WriteLine("{0}+{1}+{2}={3}", a, b, c, Sum); Console.ReadKey(); } } } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2009-07-06
我说话。。。我很努力的看了这个帖子。。。没发现它有任何价值。。。
|
|
返回顶楼 | |