16 lines
236 B
C++
16 lines
236 B
C++
|
// 测试goto语句
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
cout << "1" <<endl;
|
||
|
cout << "2" <<endl;
|
||
|
goto FLAG;
|
||
|
cout << "3" <<endl;
|
||
|
cout << "4" <<endl;
|
||
|
FLAG:
|
||
|
cout << "5" <<endl;
|
||
|
return 0;
|
||
|
}
|