精慕门9207190
2017-09-15 21:26
24行的代码看不懂特别是{0}{1}
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string today;//今天的午饭
string tomorrow;//明天的午饭
string temp;//中间变量
today = "鱼香肉丝";
tomorrow = "小鸡炖蘑菇"
//请在这里补充代码,实现变量today和tomorrow的交换
temp = today;//今天的午饭赋值给temp
today = tomorrow;//明天的午饭赋值给今天
tomorrow = temp;//temp赋值给明天
//打印
Console.WriteLine("我今天吃{0},明天吃{1}。",today,tomorrow);
}
}
}
就这样,还不对一比一看那错了,注意符号不要用成中文的了。都没错好不对就是这个编译器的问题不用管了,自己会了就好。
这个的正确答案是把后面的变量换一下就对了,一个职业坑新手的网站课程
都是错的,这个就是劝你不要学c#了
string temp
temp = today;
today = tomotrrw;
tomorrow = temp;
0和1就是占位符
在下面添加,string box;
box=today;
today=tomorrow;
tommorrmow=box;
C#开发轻松入门
254118 学习 · 1459 问题
相似问题