error CS2001: Source file `' could not be found
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string today;//今天的午饭
string tomorrow;//明天的午饭
today = "鱼香肉丝";
tomorrow = "小鸡炖蘑菇";
//请在这里补充代码,实现变量today和tomorrow的交换
string temp;
temp=today;
today=tomorrow;
tomorrow=temp;
//打印
Console.WriteLine("我今天吃{0},明天吃{1}。",today,tomorrow);
}
}
}
有一部分原因可能是系统问题,最主要的可能是自己范的小错误,比如分号?
系统的问题,我每次也这样,自己拿vs调试吧。