问答详情
源自:2-17 C#的比较运算符

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

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

提问者:独孤求戒 2018-07-27 14:53

个回答

  • 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

    能看一下你的代码吗~