1、sort函数(默认升序排序(从小到大))
要使用此函数只需用#include <algorithm> sort即可使用,语法描述为:
sort(begin,end),表示一个范围
也自己编写compare函数:
bool compare(int a,int b)
{
return a<b; //升序排列,如果改为return a>b,则为降序////////
}
sort(a,a+20,compare);
2、cin 遇空格停止输入
3、如果是字符串类型 ‘21‘>‘123‘ ‘90‘+‘123‘=‘90123‘
4\ASCII码中大写字母排在小写字母前面
5、
时间: 2024-10-24 23:43:25