f0514.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f0514.cpp
- // 默认参数
- //=====================================
- #include<iostream>
- using namespace std;
- //-------------------------------------
- void delay(int a = 2); // 函数声明时
- //-------------------------------------
- int main(){
- cout<<"delay 2 sec.....";
- delay(); // 等于调用delay(2)
- cout<<"ended.n";
- cout<<"delay 5 sec.....";
- delay(5);
- cout<<"ended.n";
- }//------------------------------------
- void delay(int a){ // 函数定义时
- int sum=0;
- for(int i=1; i<=a; ++i)
- for(int j=1; j<1000; ++j)
- for(int k=1; k<100000; ++k) sum++;
- }//====================================