博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
课程设计__C++初步,C++对C的扩充
阅读量:5755 次
发布时间:2019-06-18

本文共 1732 字,大约阅读时间需要 5 分钟。

小草的C++要结课了,小草终于翻起书来,小草用的老谭的书,有什么不对的就找老谭去吧。

 

///C++初步///C++对C的扩展#include 
using namespace std;///const定义常量const int inf=0x3f3f3f3f;int main(){ cout<
<
View Code

 

 

///C++初步///C++对C的扩展#include 
using namespace std;///函数重载///函数重载,一名多用,参数个数,类型要不同int _max(int a,int b) { return (a>b)?a:b;}float _max(float a,float b) { return (a>b)?a:b;}int _max(int a,int b,int c) { a=(a>b)?a:b; a=(a>c)?a:c; return a;}int main() { int a=12,b=13,c=28; cout<<_max(a,b)<
View Code

 

///C++初步///C++对C的扩展#include 
using namespace std;///函数模板///函数体完全相同,只有形参不同/*int _max(int a,int b) { return (a>b)?a:b;}float _max(float a,float b) { return (a>b)?a:b;}long _max(long a,long b) { return (a>b)?a:b;}*/template
T _max(T a,T b) { return (a>b)?a:b;}int main() { int a=12,b=13; cout<<_max(a,b)<
View Code

 

///C++初步///C++对C的扩展#include 
using namespace std;///有默认参数的函数,在构造函数中经常遇到///求圆柱体体积float volume(float h,float r=9) { return 3.14*h*r;}int main() { cout<
<
View Code

 

///C++初步///C++对C的扩展#include 
using namespace std;///变量的引用void _swap(int &a,int &b) { int temp; temp=a; a=b; b=temp;}int main() { int a=2,b=3; _swap(a,b); cout<
<<" "<<
View Code

 

///C++初步///C++对C的扩充#include 
using namespace std;///内置函数///规模小且使用频繁inline int _max(int a,int b) { return (a>b)?a:b;}int main() { int a=3,b=4; cout<<_max(a,b)<
View Code

 

///C++初步///C++对C的扩充#include 
using namespace std;///作用域运算符 ::float a=13.3;int main() { int a=3; cout<
<
View Code

 

转载于:https://www.cnblogs.com/TreeDream/p/5449243.html

你可能感兴趣的文章
redis 常用命令
查看>>
LVS+Keepalived高可用负载均衡集群架构
查看>>
烂泥:kvm安装windows系统蓝屏
查看>>
iPhone开发面试题--葵花宝典
查看>>
EdbMails Convert EDB to PST
查看>>
POJ 2184
查看>>
大话 程序猿 眼里的 接口
查看>>
struts2用了哪几种模式
查看>>
replace函数结合正则表达式实现转化成驼峰与转化成连接字符串的方法
查看>>
ubuntu 初学常用命令
查看>>
WCF客户端与服务端通信简单入门教程
查看>>
判断是否含有中文
查看>>
android 资源种类及使用
查看>>
Explorer程序出错
查看>>
修改系统时间 ubuntu
查看>>
Centos7同时运行多个Tomcat
查看>>
使用CocoaPods过程中的几个问题
查看>>
我的友情链接
查看>>
mysql数据类型---数值型---int
查看>>
为eclipse安装maven插件
查看>>