数组是一种由相同数据类型组成的构造类型
定义:类型说明符 数组名[常量表达式]? = {值1,值2...};
array:中文数组的意思
temp:临时存放
count:累加
随机数式子:
冒泡排序:
//? ? int numbers[] = {6,8,3,4,9,1};
//? ? BOOL flag = YES;
//? ? for (int j = 0; j < 6 -1 && flag == YES ; j++) {
//? ? ? ? flag = NO;
//? ? ? ? for (int i = 0; i < 6 - 1 - j; i++) {
//? ? ? ? ? ? if (numbers[i] > numbers[i + 1]) {
//? ? ? ? ? ? ? ? int temp = numbers[i + 1];
//? ? ? ? ? ? ? ? numbers[i + 1] = numbers[i];
//? ? ? ? ? ? ? ? numbers[i] = temp;
//? ? ? ? ? ? ? ? flag = YES;
//? ? ? ? ? ? }
//? ? ? ? }
//? ? }
//? ? for (int? i = 0; i < 6; i++) {
//? ? ? ? printf("%d\n",numbers[i]);
//? ? }
sizeof()? :查看所占空间的大小
字符数组:有'\n'结束标志的字符数组也称为字符串
字符串处理函数:
strlen() :计算字符串长度
strcpy():字符串拷贝
strcat(): 字符串拼接
strcmp():字符串比较
unsigned long : 无符号长整形
宏定义: # define pi 3.14
# define mul (A,B) ((A)*(B))