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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0514.cpp
  3. // 默认参数
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. void delay(int a = 2);           // 函数声明时
  9. //-------------------------------------
  10. int main(){
  11.   cout<<"delay 2 sec.....";
  12.   delay();                       // 等于调用delay(2)
  13.   cout<<"ended.n";
  14.   cout<<"delay 5 sec.....";
  15.   delay(5);
  16.   cout<<"ended.n";
  17. }//------------------------------------
  18. void delay(int a){               // 函数定义时
  19.   int sum=0;
  20.   for(int i=1; i<=a; ++i)
  21.   for(int j=1; j<1000; ++j)
  22.   for(int k=1; k<100000; ++k) sum++;
  23. }//====================================
  24.