f0213.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0213.cpp
  3. // goto
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. int main(){
  9.   int a;
  10.   goto Init;
  11. Forward:
  12.   a = a + 1;
  13. Print:
  14.   cout<<a<<endl;
  15.   goto Down;
  16. Init:
  17.   a = 1;
  18.   goto Print;
  19. Down:
  20.   if(a<100) goto Forward;
  21. }//====================================
  22.