本帖最后由 王晨 于 2012-12-20 17:27 编辑
你是这个意思吗?我写了个double的除法计算(1/3无限循环)
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- double i=1.0,j=3.0;
- i=i/j;
- Console.Write(i);
- Console.ReadKey();
- }
- }
- }
复制代码
这样结果很明显的! |