------- 1.基本框架 ---------
#include <iostream> //头文件
using namespace std; //命名空间:防止命名冲突
int main(){ //主函数:程序的开始
}
------- 2.变量类型和变量 ---------
变量类型:
int: -2^31 ~ 2^31-1
long long: -2^63 ~ 2^63-1
float: 单精度浮点型
double: 双精度浮点型(常用)
变量:
变量类型 + 变量名; //int a;
变量命名规则:
数字、字母、下划线组成
开头不能是数字
区分大小写
------- 3.输入和输出 ---------
1)cout: 输出 c:控制台 out:出去
cout << "我不会C++" << endl; //end of line
2)cin: 输入 c:控制台 in:变量
cin >> 变量1 >> 变量2;
3)printf:print + format 格式化输出
int a = 123;
double b = 3.14159;
a. printf("%d", a); //123
b. printf("%5d", a); // 123
c. printf("%05d", a); //00123
d. printf("%.2lf", b); //3.14
------- 4.逻辑运算符 ---------
1->true 0->false
1)&&:逻辑与 :两边同时成立,才成立
1&&0=0 0&&1=0 0&&0=0 1&&1=1
2)||:逻辑或 :两边只要有一边成立,就成立
1&&0=1 0&&1=1 0&&0=0 1&&1=1
3)! :逻辑非 :反一反
!0=1 !1=0
------- 5.条件语句 ---------
1)单分支:当条件表达式成立的时候,执行语句组;
if(条件表达式){
语句组;
}
2)双分支:当条件表达式成立的时候,执行语句组1;否则执行语句组2;
if(条件表达式){
语句组1;
} else{
语句组2;
}
3)多分支
if(条件表达式1){
语句组1;
}else if(条件表达式2){
语句组2;
}else if(条件表达式3){
语句组3;
}else{
语句组4;
}
------- 1.for循环 ---------
for(①初始值; ②条件; ④变化量){
③循环语句;
}
执行顺序: ①②③④②③④②③④...
------- 2.while循环 ---------
//当条件成立的时候,执行循环体
//①初始值
//while(②条件){
// ③循环语句;
// ④变化量;
//}
while(循环条件){
循环体;
}
------- 3.do-while循环 ---------
特点:和while语句相比至少执行一次
do{
循环体;
}while(循环条件);
------- 4.循环嵌套 ---------
for(int i = 1; i <= 10; i++){
for(int j = 1; j <= i; j++){
cout << j << " ";
}
cout << endl;
}
i = 1 j = 1
i = 2 j = 1~2
i = 3 j = 1~3
i = 4 j = 1~4
···
i = 10 j = 1~10
数组
------- 1.数组的定义 ---------
变量类型+数组名[元素的个数];
int a[105]; //切记至少要比给的范围大5~10
------- 2.数组的初始化 ---------
下标从0开始
1)int a[5]; //未初始化
2)int a[5] = {1,2,3,4,5}; //1 2 3 4 5
3)int a[5] = {1}; //1 0 0 0 0
4)int a[] = {1,2,3}; //等价 int a[3] = {1,2,3};
------- 3.数组越界 ---------
int a[5] = {1,2,3,4,5};
a[5] = 6; //a[5]实际上并不存在;编译不会错,但是运行会错
a[-1] = 5; //a[-1]实际上并不存在;编译不会错,但是运行会错
------- 4.数组的输入、输出 ---------
int n;
cin >> n;
for(int i = 0; i < n; i++){
cin >> a[i];
}
//for(int i = 1; i <= n; i++){
// cin >> a[i];
//}
for(int i = 0; i < n; i++){
cout << a[i] << " ";
}
//函数
//1. 函数的声明
//2. 函数的定义
//3. 函数的调用
//1.函数的声明:当函数的定义写在主函数之前,则可以省略函数的声明
//函数的类型 + 函数名(形参...);
//函数的类型:int、double、long long、void(无返回值)
int add(int a, int b);
//2.函数的定义
//函数的类型 + 函数名(形参...){
//
//}
int add(int a, int b){
return a + b;
}
//3. 函数的调用
//函数名(实参...);
add(3,4);
//4. 全局变量和局部变量
当全局变量和局部变量共同出现的时候,则以局部变量为优先
//5. 引用传递
//引用: 给变量取一个别名
#include <iostream>
using namespace std;
void swap(int &a, int &b){
int t = a;
a = b;
b = t;
}
int main(){
int a = 3, b = 4;
swap(a, b);
cout << a << " " << b;
return 0;
}
字符
char ch; //定义一个字符变量
ASCII码
'0':48
'A':65
'a':97
判断字符是否为大写
if(ch >= 'A' && ch <= 'Z'){
}
4. 字符数组
char ch[5] = "abcde"; //错误,末尾有 '\0'
string
1)头文件
#include <string>
//万能头 #include <bits/stdc++.h>
2)输入
string s;
cin >> s; //碰到空格或者回车就结束
getline(cin,s); //碰到回车才结束,可以输入空格
3)计算长度
s.length();
s.size();
4)寻找子串
string s = "abcde", ss = "abc";
s.find(ss); //第一次出现的位置
s.rfind(ss); //最后一次出现的位置
5)反转
#include <algorithm>
reverse(s.begin(), s.end()); //会把s改变
二维数组
定义
变量类型 + 数组名[行数][列数];
int a[5][5];
double b[5][5];
char c[5][5];
初始化
int a[5][5] = {1,2,3,4,5,6,7,8,9};
int a[5][5] = {{1,2,3},{4,5},{6}};
输入和输出
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
cin >> a[i][j];
}
}
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
cout << a[i][j] << " ";
}
cout << endl;
}
OI赛制
文件的使用
#include <bits/stdc++.h>
using namespace std;
//自定义函数...
//数组定义
int main(){
freopen("文件名.in", "r", stdin);
freopen("文件名.out", "w", stdout);
//--------- 程序开始
//程序内容
//
fclose(stdin);
fclode(stdout);
return 0;
}
结构体
//struct 结构体变量名{
// 变量类型 变量名1;
// 变量类型 变量名2;
// 变量类型 变量名3;
//}数组,变量;
struct ATM{
string name;
int height;
int hurt;
int year;
}a[105], a1;
bool cmp(ATM x, ATM y){
if(x.hurt != y.hurt){
return x.hurt > y.hurt;
}else{
return x.year < y.year;
}
}
int main(){
sort(a, a+n, cmp);
}