我试图制作一个可以同时增加三个变量的数学程序,而且我不知道最好的方法
Console.WriteLine("Input your x");
var g = Console.ReadLine();
int x = Convert.ToInt32(g);
Console.WriteLine("Input your y");
var f = Console.ReadLine();
int y = Convert.ToInt32(f);
Console.WriteLine("Input your z");
var l = Console.ReadLine();
int z = Convert.ToInt32(l);
Console.WriteLine();
Console.WriteLine($"{x}\t{y}\t{z}");
Console.WriteLine();
答案 0 :(得分:0)
如果您使用C#6.0
,请尝试此操作 Console.WriteLine($"{x} * {y} * {z} = {x * y * z}");
或
Console.WriteLine(string.Format("{0} * {1} * {2} = {3}", x, y, z, x * y * z));
答案 1 :(得分:0)
如果你想内联数学函数那么你可以这样做
Console.WriteLine($"{x}\t{y}\t{z} = {x * y * z}");
如果您希望存储变量
int m = x * y * z;
Console.WriteLine($"{x}\t{y}\t{z} = {m}");