将这些代码加在一起而不是单独乘以每个代码的最佳方法是什么?

时间:2016-11-01 10:46:19

标签: c# math

我试图制作一个可以同时增加三个变量的数学程序,而且我不知道最好的方法

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

2 个答案:

答案 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}");