做代码都对着但是老有这个报错

来源:2-8 编程练习

沃特昨日友人

2017-07-26 23:26

error CS2001: Source file `' could not be found

写回答 关注

3回答

  • qq_高仔_mrzIQ5
    2018-10-30 09:54:27

    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);
            }
        }
    }

  • 边防连
    2017-09-10 19:17:18

    有一部分原因可能是系统问题,最主要的可能是自己范的小错误,比如分号?

  • Dawn丶Maple
    2017-07-27 10:17:54

    系统的问题,我每次也这样,自己拿vs调试吧。

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题