我一直在尝试编写一个较长的程序:
#include <iostream>
using namespaces std;
void main()
{
//first part of program
... //initializing and displaying progress
...
//second part of program
... //processing
...
//last part of program
... //printing results
...
}
我不想定义函数或使用OOP,但仍然希望能够将代码组织成块:
#include <iostream>
using namespaces std;
void main()
{
label 1 ;
label 2 ;
label 3 ;
}
label 1 :
{ //first part of program
... //initializing and displaying progress
...
}
label 2 :
{ //second part of program
... //processing
...
}
label 3 :
{ //last part of program
... //printing results
...
}
这在C++中可能吗?
最佳答案
您可以使用函数代替标签,这在C语言中很常见。
关于c++ - 在C++中标记或定义一组语句,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28284406/