猿问

沿着 C# 上的变量函数

我是使用 c# 编程的新手,我正在尝试Console.WriteLine在 {} 中有 $ 和一个变量的地方做一个,而不是在 c# 中完成的通常方式。但是,当我尝试添加功能时,它不起作用,因为我不知道正确的语法。


示例(功能Math.round)


using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace ConsoleApp1

{

    class Program

    {

        static void Main(string[] args)

        {

            decimal Euro, Dolar;

            decimal tax = 1.19590m;


            Console.WriteLine("Convert euro into dólar- day 06/05/2018.\nWhat is the amount in euros? ");


            Euro = decimal.Parse(Console.ReadLine());


            Dolar = Euro * tax;


            Console.WriteLine($"The final value is: (Math.Round,2){Dolar} dólars");


            Console.ReadKey();

        }

    }

}


慕斯王
浏览 124回答 2
2回答

拉丁的传说

试试这个:Console.WriteLine("The final value is: {0} dólars", Math.Round(Dolar, 2));
随时随地看视频慕课网APP
我要回答