码迷,mamicode.com
首页 > 其他好文 > 详细

输入一个100以内的整数,判断与9的关系

时间:2015-09-16 19:42:10      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

Console.Write("请输入一个100以内的整数:");
int shu =int.Parse(Console.ReadLine());
if (shu % 9 == 0)
Console.WriteLine("这是9的倍数");
if (shu / 10 == 9)
Console.WriteLine("他的十位是9");
if (shu % 10 == 9)
Console.WriteLine("他的个位是9");
if (shu % 9 == 1 && shu / 10 != 9 && shu % 10 != 9)
Console.WriteLine("这个数与9无关");
Console.ReadLine();

输入一个100以内的整数,判断与9的关系

标签:

原文地址:http://www.cnblogs.com/name-hanlin/p/4814107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!