为了账号安全,请及时绑定邮箱和手机立即绑定

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

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 回答

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

        }

    }

}

怎么办我是不是懒到家了

2 回复 有任何疑惑可以回复我~
#1

锡纸大大

66666
2020-02-11 回复 有任何疑惑可以回复我~

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进行的一个交换就是你现在看到的答案了,这么写你应该能明白了吧!

3 回复 有任何疑惑可以回复我~
#1

慕函数9082697

我是小白,哈哈我看懂了,谢谢大佬
2019-07-30 回复 有任何疑惑可以回复我~
#2

weixin_慕斯卡1193446

为什么{0}是代表了today,是什么规则吗
2020-10-29 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~
#1

柠檬九歌

下面的{0},{1}是另一种书写格式吗
2018-10-16 回复 有任何疑惑可以回复我~
#2

慕华1132107218 回复 柠檬九歌

这代表着占位符
2018-10-16 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信