码迷,mamicode.com
首页 > Windows程序 > 详细

c#的练习

时间:2018-10-02 00:50:50      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:read   ons   个数   练习   str   line   write   控制   class   

            //string s1 = Console.ReadLine();
            //int n1 = Convert.ToInt32(s1);
            //string s2 = Console.ReadLine();
            //int n2 = Convert.ToInt32(s2);
            //int temp = n1;给n1一个量
            //n1 = n2;
            //n2 = temp;交换n1和n2的数字
            //Console.WriteLine(n1+";"+n2);
            //Console.ReadKey();
            string s1 = Console.ReadLine();//控制台输出
            int n1 = Convert.ToInt32(s1);//输出一个整数
            int ge = n1 % 10;//一个数跟10求余得到的是这个数的个分为
            int shi=(n1/10)%10;//一个数跟10相除的话,相当于去掉这个数的个分位
            int bai = n1 / 100;
            Console.WriteLine(ge+""+shi+""+bai);
            Console.ReadKey();

 

c#的练习

标签:read   ons   个数   练习   str   line   write   控制   class   

原文地址:https://www.cnblogs.com/quyan/p/9736155.html

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