#include<iomaip> cout << setfill('!') << setw(8) << "nice";
sqrt()求平方根
// int类型取绝对值 int abs(int x); //float类型取绝对值 float fabsf(float x); //double类型取绝对值 double fabs(double x); //ps:直接写abs()有重载
字符串总是以'0'作为串的结束符。 因此当把一个字符串存入一个数组时,也把结束符 '0'存入数组,并以空字符作为该字符串结束的标志。
字符串的长度代表字符个数,不包括'0'即'\0'
#include<iostream> #include<string> using namespace std; int main() { string s = "abc\0xy"; cout << s.length(); return 0; }
因为“abc\0xy"以空字符\0就结束了
转义字符只表示一个字符,所以只有一个长度
'\n' | 换行 |
'\a' | 响铃 |
'\t' | 水平制表符 |
'\v' | 竖向跳格 |
'\0' | 空字符 |
'\\' | 反斜杠\ |
'\'' | 单引号' |
'\''' | 双引号" |
'\ddd' | 1-3位八进制数 |
'\xdd' | 1-2位十六进制数 |
#include<iostream> #include<string> using namespace std; int main() { string s = "a\134\n\\bc\t"; cout << s.length(); return 0; }
因为a\134\n\\bc\t"中\134是0(134)
逗号表达式
表达式1,表达式2……表达式n
从左往右依次求解,最后取最右边表达式的值,且赋值运算符优先级高于逗号表达式、逗号运算符是所有运算符中级别最低的
ps:用cout输出一个逗号表达式的值或赋值表达式时,要将其用括号括起来
#include<iostream> #include<string> using namespace std; int main() { int x = 2, y = 4, z = 7; //z=的赋值表达式需要用括号,且先z=y=4,y再减减 cout << (z = (++x, y--)) << '\t' << x << '\t' << y<<'\t' << z; return 0; }
x=(a=3, 6*3) x=18,a=3
x=a=3, 6*a x=3,a=3
oj刷题
今天晚上去做人机交互的东西了,所以刷的题不怎么多,而且其实是简单的拆分题目