【样题】
A+B Problem
参考:https://blog.csdn.net/with_wine/article/details/118941074
var a,b:longint; begin readln(a,b); writeln(a+b) end.
【问题】
在 hustoj 中输入 Pascal 代码后,报错:答案错误 AC:0%
查看错误信息:
3 \ Execution error, USE_DOCKER:1 ! > You need to install compiler VM or runtime for your language.
参考:https://blog.csdn.net/yybird_/article/details/46050023
参考:https://blog.csdn.net/huplion/article/details/51405007
在未安装free-Pascal时,hustoj上Pascal判题会失败,只会输出一个空行。需要安装free-pascal编译器。
sudo apt-get install fp-compiler -y
再次在 hustoj 中输入 Pascal 代码后,通过。
【参考】