c# 输入一个一位正数的四舍五入 , int b = Convert.ToInt32(a);这提示插入字符串格式不正确

usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespaceConsoleApplicat... using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{

Console.WriteLine("请输入一个正数:");
string a = Console.ReadLine();
int b = Convert.ToInt32(a);
double c = Convert.ToInt32(a);
if (c - b >= 0.5)
{
b = b + 1;
}
else
{
b = b;
}
Console.WriteLine(b);

}
}
}
展开
 我来答
龙的猫
2015-04-01 · TA获得超过447个赞
知道小有建树答主
回答量:562
采纳率:73%
帮助的人:267万
展开全部
你转成整数型带小数点可定不行啊 另外算法写的不好
直接用
Decimal d = new Decimal(345.345678);
d.ToString("F3");

这种精度转换值比较好
百度网友ce7f3ccb4
2015-04-01 · TA获得超过1950个赞
知道大有可为答主
回答量:2299
采纳率:0%
帮助的人:1903万
展开全部
有空格吧?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式