这个怎么给temp赋值呢,可以随便赋值吗例如string=temp?还有下面{0},{1}是什么鬼完全不会了。求给位大佬帮帮忙

来源:2-8 编程练习

qq__czABRS

2018-10-09 16:06

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的交换

            

            

            

            

            

            

            

            //打印

            Console.WriteLine("我今天吃{0},明天吃{1}。",today,tomorrow);

        }

    }

}


写回答 关注

3回答

  • 慕少9563011
    2019-07-26 16:14:39

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                string today;//今天的午饭

                string tomorrow;//明天的午饭

                today = "鱼香肉丝";

                tomorrow = "小鸡炖蘑菇";

                Console.WriteLine("我今天吃{1},明天吃{0}。",today,tomorrow);

            }

        }

    }

    怎么办我是不是懒到家了

    锡纸大大

    66666

    2020-02-11 15:28:54

    共 1 条回复 >

  • qq_高仔_mrzIQ5
    2018-10-30 09:58:12

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


    你用这个调试运行试试看,你就知道你错误在哪里了,这个是我刚刚写的正确的, 大括号里头的0 1都表示是占位符,必须从0开始编排,0对应的是today,1对应的是tomorrow,today对应的是鱼香肉丝,tomorrow对应的是小鸡炖蘑菇,那么通过string temp,定义了一个空瓶子,然后将today与tomorrow进行的一个交换就是你现在看到的答案了,这么写你应该能明白了吧!

    weixin...

    为什么{0}是代表了today,是什么规则吗

    2020-10-29 22:55:42

    共 2 条回复 >

  • 悠然_
    2018-10-09 16:15:45

    temp=today; today=tomorrow; tomorrow=temp;  就好了。至于0 .1  是指的变量的位置

    慕华1132... 回复柠檬九歌

    这代表着占位符

    2018-10-16 11:04:05

    共 2 条回复 >

C#开发轻松入门

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

254119 学习 · 1459 问题

查看课程

相似问题