姓名 | 地址 |
博客 | www.bk.com |
插入一个单元格并放入代码
using System.Collections.Generic; using System.Linq; using System.Text;
namespace test01 { class Program { static void Main(string[] args) { Console.WriteLine("Hello-world!"); Console.WriteLine("I love Hello-world!"); string name1 = Console.ReadLine(); Console.WriteLine("姓名为:{0}", name1); Console.ReadLine(); } } } |