//求绝对值 /* using System;
namespace _8 { class Program { static void Main(string[] args) { double a = double.Parse(Console.ReadLine()); a = Math.Abs(a); string str = a.ToString(“0.0”); Console.WriteLine(str); Console.ReadLine(); } } } */
转载请注明原文地址:https://ipadbbs.8miu.com/read-63725.html