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);
}
}
}
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);
}
}
}
怎么办我是不是懒到家了
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进行的一个交换就是你现在看到的答案了,这么写你应该能明白了吧!
temp=today; today=tomorrow; tomorrow=temp; 就好了。至于0 .1 是指的变量的位置
C#开发轻松入门
254119 学习 · 1459 问题
相似问题