标题:中国人的四舍五入问题~~~
取消只看楼主
ting6love
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2007-9-27
 问题点数:0 回复次数:0 
中国人的四舍五入问题~~~
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication5
{
    class Program
    {
        static double a(double x)
        {
            if (x - (int)x >= 0.5)
                x = (int)x + 1;
            else
                x = (int)x;
            return x;
        }
        static void Main(string[] args)
        {
            Console.WriteLine("输入金额");
            double x=double.Parse(Console.ReadLine());
            Console.WriteLine("{0}",x);
        }
    }
}

为什么算不出来四舍五入呢?哪有问题呀。。。请指点一下~~
搜索更多相关主题的帖子: 中国人 四舍五入 double using int 
2007-12-03 21:03



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-190168-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.660614 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved