美文网首页
014_练习。

014_练习。

作者: 立秋i | 来源:发表于2018-03-30 23:32 被阅读0次

    namespace _014_练习3和4 {

        class Program {

            static void Main(string[] args)

            {

                //string str1 = Console.ReadLine();

                //int num1 = Convert.ToInt32(str1);

                //string str2 = Console.ReadLine();

                //int num2 = Convert.ToInt32(str2);

                //string str3 = Console.ReadLine();

                //int num3 = Convert.ToInt32(str3);

                //string str4 = Console.ReadLine();

                //int num4 = Convert.ToInt32(str4);

                //int res = num1*num2*num3*num4;

                //Console.WriteLine(res);

                string str = Console.ReadLine();

                int num = Convert.ToInt32(str);

                int ge = num%10;// 一个数字跟10求余得到是这个数字的个分位

                int shi = (num/10)%10;//一个数字跟10相除的话,相当于去掉这个数字的个分位( xyz/10 = xy )

                int bai = num/100;

                Console.WriteLine(ge+""+shi+""+bai);

                Console.ReadKey();

            }

        }

    }

    相关文章

      网友评论

          本文标题:014_练习。

          本文链接:https://www.haomeiwen.com/subject/eyvmcftx.html