using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
float f = Convert.ToSingle(Console.ReadLine());
string s = f.ToString();
int c = s.LastIndexOf("."); //搜索"."并返回int类型的值
int a = int.Parse(s.Substring(0, c));
float b =f - (float)a;
Console.WriteLine("a:"+a);
Console.WriteLine("b:"+b);
Console.ReadLine();
}
}
}
虽然是控制台的,但功能也实现了.
关键是红色部分那个方法.
[ 本帖最后由 one_june 于 2010-8-31 20:14 编辑 ]
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
float f = Convert.ToSingle(Console.ReadLine());
string s = f.ToString();
int c = s.LastIndexOf("."); //搜索"."并返回int类型的值
int a = int.Parse(s.Substring(0, c));
float b =f - (float)a;
Console.WriteLine("a:"+a);
Console.WriteLine("b:"+b);
Console.ReadLine();
}
}
}
虽然是控制台的,但功能也实现了.
关键是红色部分那个方法.
[ 本帖最后由 one_june 于 2010-8-31 20:14 编辑 ]