2.输入两个整数,输出他们的实数除商,并输出上的第二位小数
static void Main()
{
int i = Convert.ToInt32(Console.ReadLine());
int j = Convert.ToInt32(Console.ReadLine());
double shang = (double)i / j;
string str = string.Format("{0:F3}", shang);
char c = str[str.Length - 2];
Console.WriteLine(c);
Console.Read();
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>