在Jgrasp中运行C ++时出错216

时间:2016-12-26 22:50:54

标签: c++ null jgrasp

我保存了文件并将其成功链接,但是当我运行它时,运行I / O会显示:

****----**jGRASP wedge2 error: could not run** 

("C:\Users\\***\Documents\\***\code\superbowl.exe" ).

 **----   error # 216 "(null)".**

 ----jGRASP: operation complete.****

我该如何解决?我可以运行保存在同一文件夹中的其他程序。 我认为我的代码没有错:

#include <iostream>

int main()
{
    const unsigned int TOUCHDOWN=6;
    const unsigned int FIELD_GOAL=3;
    const unsigned int POINT_AFTER_TOUCHDOWN=1;
    const unsigned int SAFETY=2;
    std::cout << TOUCHDOWN + FIELD_GOAL + POINT_AFTER_TOUCHDOWN + SAFETY << "\n";
    std::cout << "Carolina Panthers win" << std::endl;
    return 0;
}

1 个答案:

答案 0 :(得分:0)

216是机器类型不匹配。

可以通过双击(从jGRASP外部)运行可执行文件吗?