winform小程序------保留n位四舍五入小数
2020-12-13 01:35
标签:winform style class blog c code winform小程序------保留n位四舍五入小数,搜素材,soscw.com winform小程序------保留n位四舍五入小数 标签:winform style class blog c code 原文地址:http://www.cnblogs.com/hongmaju/p/3741955.html一:可选择保留位数,注释很解释的很详细,上图
二:全部代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Round
{
public partial class Frm_Main : Form
{
public Frm_Main()
{
InitializeComponent();
}
private void btn_Get_Click(object sender, EventArgs e)
{
double P_dbl_d1, P_dbl_d2;//定义两个double类型变量
if (double.TryParse(txt_add1.Text, out P_dbl_d1) &&//判断输入信息是否正确
double.TryParse(txt_add2.Text, out P_dbl_d2))
{
txt_add3.Text = //得到四舍五入后的值
Round(P_dbl_d1 + P_dbl_d2, cbox_select.SelectedIndex + 1).ToString();
}
else
{
MessageBox.Show(//提示错误信息
"输入数值不正确!", "提示!");
}
}
///