欢迎使用,大家要努力学习! 开开心心编程! 原大家都成为高手中的高手!

源代码在线查看: p1-71.cpp

软件大小: 119 K
上传用户: yehao
关键词: 高手 编程
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				//参数带有默认值的函数
				disp(int x=1,int y=1,int z=1)
				{
				    cout				    cout				    cout				    cout				}
				
				//main()函数中测试参数带有默认值的函数disp()
				void main()
				{
				    disp();
				    disp(10);
				    disp(10,20);
				    disp(10,20,30);
				    int a=1,b=2,c=3;
				    disp(a,b,c);
				}
							

相关资源