您的位置:首页 > 编程语言 > C#

c#之转义字符

2016-01-25 12:57 330 查看


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 接受用户从控制台的输入
{
class Program
{
static void Main(string[] args)
{
//Console.WriteLine("美女,你喜欢吃啥子水果哟~~~~?");
//String fruit = Console.ReadLine();
//Console.WriteLine("哈哈,这么巧,我也喜欢吃" + fruit);
//Console.ReadKey();

//String str = @"f:\我的娱乐\aa\bb\cc\ff\ttghth\thrth\小泽马利亚.avi";
//Console.WriteLine(str);
//Console.ReadKey();

Console.WriteLine(@"今天天气好晴朗
处处好风光");
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c#