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

运行错误时调试方法

时间:2018-04-07 14:52:53      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:string   bsp   stat   nbsp   启动   点击   NPU   运行   div   

using System.Linq;

using System.Text;

namespace ConsoleApplicationl

{

    class Program

     {

            static void Main(string[] arge)

           {

                  //调试运行 : 点击启动 或 按 F5

                 //非调试运行 :CTRL + F5

                 Console.writeLine("请输入被除数");

                 string input = Consoule.ReadLine();

                  int a = int. parse(input);

                  Console.WriteLine("请输入除数");

                   input =  Console.ReadLine();

                   int b = int.Parse(input);

                    int c = a / b;

                    string result = a + "/" + b + "=" + c ;

                    Console.Write(resule);

                    Console.ReadLine();

                }

        }

}             

运行错误时调试方法

标签:string   bsp   stat   nbsp   启动   点击   NPU   运行   div   

原文地址:https://www.cnblogs.com/yangkaiming/p/8733104.html

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