我对 C++ 很陌生。
如何将代码“重定向”到某个位置?
基本上,我应该在这里放什么而不是注释行:
if ( N>1 ) {
// What should be here to make the code start from the beginning?
}
else {
// What should be here to make the code start from certain point?
}
我知道 C++ 不是脚本语言,但如果代码是作为脚本编写的,我该如何重定向它?
谢谢