问答详情
源自:2-8 编程练习

2-8的编程题求解

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

提问者:精慕门9207190 2017-09-15 21:26

个回答

  • 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_慕运维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;