2-8的编程题求解

来源:2-8 编程练习

精慕门9207190

2017-09-15 21:26

59bbd49700012c4407201280.jpg
24行的代码看不懂特别是{0}{1}

写回答 关注

6回答

  • qq_慕运维0487080
    2018-12-19 14:46:05

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

            }

        }

    }

    就这样,还不对一比一看那错了,注意符号不要用成中文的了。都没错好不对就是这个编译器的问题不用管了,自己会了就好。

  • qq_慕运维0487080
    2018-12-19 14:36:57

    这个的正确答案是把后面的变量换一下就对了,一个职业坑新手的网站课程

    qq_慕运维...

    错了,新手不要看这个,说错了

    2018-12-19 14:47:45

    共 1 条回复 >

  • qq_慕运维0487080
    2018-12-19 14:34:19

    都是错的,这个就是劝你不要学c#了

  • 南橘北枳404
    2018-07-10 22:37:41

    string temp 

                temp = today;

                today = tomotrrw;

                tomorrow = temp;


  • 慕侠5678323
    2018-01-05 16:43:40

    0和1就是占位符


  • 小孩子_0001
    2017-09-15 22:23:42

    在下面添加,string box;

    box=today;

    today=tomorrow;

    tommorrmow=box;


    qq_高仔_...

    故意拼写错误,坑新手,缺心眼

    2018-10-29 17:07:23

    共 3 条回复 >

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题