标准的 C++ 由三个重要部分组成:

核心语言,提供了所有构件块,包括变量、数据类型和常量,等等。
C++ 标准库,提供了大量的函数,用于操作文件、字符串等。
标准模板库(STL),提供了大量的方法,用于操作数据结构等

 #include <iostream>

 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int max(int x,int y){
int z;
if(x>y)z=x;
else z=y;
return(z);
} int main(int argc, char** argv) {
int a,b,m;
cin >>a>>b;
m=max(a,b);
cout <<"max="<<m<<'\n';
return ;
}

最新文章

  1. SalesForce 入门
  2. Android Studio--学习系列(1)
  3. jta.properties transactions.properties Log already in use 解决方法
  4. photoshop:css3插件
  5. 基于CSS3新属性Animation及transform实现类似翻书效果
  6. php框架
  7. WiFi网络WPA2 KRACK漏洞分析报告
  8. multiset基础学习,可以有重复类型的多重集合容器
  9. Xamarin 学习笔记 - Layout(布局)
  10. Java实现post和get请求
  11. spring三大核心
  12. springboot 常见请求方式
  13. SpringBoot整合定时任务异步任务
  14. Vue less使用scope时渗入修改子组件样式
  15. day22 os模块
  16. AD绘制PCB时,贴片封装器件的焊盘间距小于10Mil,报错解决
  17. linux达人养成计划学习笔记(三)—— 帮助命令
  18. Oracle Database 11g Release 2 Standard Edition and Enterprise Edition Software Downloads
  19. Bootstrap+Angularjs自制弹框
  20. SQL Server数据库定时备份解决方案

热门文章

  1. Linux前台、后台、挂起、退出、查看命令汇总
  2. [转]Golang 中使用 JSON 的小技巧
  3. Linux操作系统CentOS7.2发行版本的安装与配置(安装是选择服务器类型)
  4. SQL 从查询结果里查询
  5. 完美解决 IOS系统safari5.0 浏览器页面布局iframe滚动栏失效问题
  6. ILRewrite &amp;&amp; how to write a profiler
  7. SDL2中文教程
  8. 每日英语:Is Bo Xilai the Past or Future?
  9. FZU Problem 2030 括号问题
  10. vue实现复制粘贴的两种形式