zoukankan      html  css  js  c++  java
  • 运行错误时调试方法

    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();

                    }

            }

    }             

  • 相关阅读:
    springboot(6)-热部署
    springboot(5)-文件上传
    ubuntu修改tomcat使用的jdk
    jstack使用
    HeapAnalyzer如何使用
    查看linux下tomcat使用的jdk版本
    ubuntu-tomcat安装目录
    vi命令
    211java-jdk安装记录
    linux的java安装目录
  • 原文地址:https://www.cnblogs.com/yangkaiming/p/8733104.html
Copyright © 2011-2022 走看看