0%

C++基本

C++基本

语句尾加;

一行可以写多个语句

一个语句也可以占几行

注释

1
2
3
4
5
6
7
8
9
10
11
12
13
// 单行注释

/*
块注释,不可嵌套
*/

/*
*一般写成这样
*
*
*/

/*块注释也可以写在一行里*/

C++ 关键字

https://www.runoob.com/w3cnote/cpp-keyword-intro.html

运算符 表达式

https://www.runoob.com/w3cnote/cpp-keyword-intro.html

= 赋值运算符 自右向左

赋值表达式返回指向目标的引用

->

1
a=b=c=d=100;

合法,先把100赋值给d,之后把d的值赋给c…

输入输出

cin cout

<iostream>

空格和回车会分隔输入

输入char会截取第一个字符(不包括空格),后面的继续传递

cincout没有返回值,while(cin>>a)中的返回值是>>操作符返回istream&类型

getchar putchar

<cstdio>

源自c语言

输入输出单个字符

回车也是字符

putchar <string>会出错

分支

if

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
if(boolean_expression){
statement(s);
}

if(boolean_expression)
{
// 如果布尔表达式为真将执行的语句
}
else
{
// 如果布尔表达式为假将执行的语句
}


//写成一行
if(boolean_expression)statement;

if(boolean_expression){statements;}

if()
{

}
else if //else if
{

}
else
{

}

switch

1
2
3
4
5
6
7
8
9
10
11
12
switch(expression){
case constant-expression :
statement(s);
break; //跳出循环,看情况写
case constant-expression :
statement(s);
break;

// 可以有任意数量的 case 语句
default :
statement(s);
}

eg.

1
2
3
4
5
6
7
8
9
switch(a){
case 1:
cout<<x<<endl;
case 2:
x++;
break;
default:
cout<<"error"<<endl;
}

循环

1
2
3
break;//跳出当前循环

continue;//跳出本次循环进入下一次循环

for

1
2
3
4
for ( init; condition; increment )
{
statement(s);
}

eg.

1
2
3
4
5
6
7
8
9
for (int i=1;i<5; i++) //只要有两个分号分出三段就可以,分号之间不写也可以
{
cout<<i;
}

for(;;)//死循环
{

}

while

1
2
3
4
5
6
7
8
9
while(condition)
{
statement(s);
}

do
{
statement(s);
}while( condition ); //这里有分号

资料来源

https://www.runoob.com/cplusplus/cpp-switch.html

https://www.runoob.com/cplusplus/cpp-if-else.html

https://blog.csdn.net/jackbai1990/article/details/7467030

https://www.jianshu.com/p/0d3777c8147b

https://www.runoob.com/cplusplus/cpp-do-while-loop.html

https://www.runoob.com/cplusplus/cpp-for-loop.html

https://www.runoob.com/cplusplus/cpp-while-loop.html