111,092
社区成员




namespace demo_str
{
class Program
{
static void Main(string[] args)
{
string biaoTi = "静夜思";
string zuoZhe = "李白";
string neiRong ;
if (true)
{
if (true)
{
if (true)
{
neiRong = @"床前明月光,疑是地上霜。
举头望明月,低头思故乡。";
}
}
}
if (true)
{
if (true)
{
if (true)
{
if (true)
{
Console.WriteLine($@"标题:{biaoTi}
作者:{zuoZhe}
内容:{neiRong}");
Console.ReadKey();
}
}
}
}
}
}
}
neiRong = @"床前明月光,疑是地上霜。
举头望明月,低头思故乡。".Replace(" ", "");
偶尔心情好的时候。我是这么写的。。。