程序提交后显示abort什么意思

来源:2-17 C#的比较运算符

独孤求戒

2018-07-27 14:53

程序提交后显示abort什么意思,无法提交

写回答 关注

4回答

  • 61252264
    2019-02-07 15:56:24

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace Test
    {
        class Program
        {
            static void Main(string[] args)
            {
                double x = 3.5;
                int y = 3;

               x++;
                Console.WriteLine(x>y);
            }
        }
    }


  • lider521
    2018-11-24 16:32:11

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace Test
    {
        class Program
        {
            static void Main(string[] args)
            {
                double x = 3.5;
                int y = 3;
                Console.WriteLine(x>y);
            }
        }
    }


  • 独孤求戒
    2018-07-27 16:13:46

    我的是ipad版的软件,每次提交都会出现一个弹窗,上面写着官网网址,还写着一个abort

  • qq_山不在高_1
    2018-07-27 16:11:38

    能看一下你的代码吗~

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题