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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // sa2.cpp
  3. //=====================================
  4. #include"a1.h"
  5. #include"a3.h"
  6. static void f3();
  7. //------------
  8. int main(){
  9.   f1();
  10.   f2();
  11.   f3();
  12. }//-----------
  13. void f3(){
  14.   f1();
  15. }//-----------
  16. void p(){
  17.   f3();
  18. }//------------------------------------
  19.