C基础笔记(数组)
Posted charmLuo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C基础笔记(数组)相关的知识,希望对你有一定的参考价值。
数组
声明一个数组,需要指定元素的类型和元素的数量
数组都是以 0 作为它们第一个元素的索引,即 0 作为第一位存储数据
数组是用来存储一系列数据 (相同类型的变量)
语法: 数组类型 数组名称[整型常量]
#include<stdio.h> int main() int cj[10]; //数组的定义 cj[0] = 11; //数组的初始化 cj[1] = 22; cj[2] = 33; cj[3] = 44; printf("one = % d\\n", cj[0]); return 0;
结果:one=11
#include <stdio.h> int main () int n[ 10 ]; /* n 是一个包含 10 个整数的数组 */ int i,j; /* 初始化数组元素 */ for ( i = 0; i < 10; i++ ) n[ i ] = i + 100; /* 设置元素 i 为 i + 100 */ /* 输出数组中每个元素的值 */ for (j = 0; j < 10; j++ ) printf("Element[%d] = %d\\n", j, n[j] ); return 0;
结果:
Element[0] = 100
Element[1] = 101
Element[2] = 102
Element[3] = 103
Element[4] = 104
Element[5] = 105
Element[6] = 106
Element[7] = 107
Element[8] = 108
Element[9] = 109
freecodecamp 基础算法题笔记
- 字符串转化成数组
- reverse方法翻转数组顺序
- 数组转化成字符串。
function reverseString(str) {
a= str.split("");
b = a.reverse();
c = b.join("");
return c;
}
reverseString("hello"); // olleh
以上是关于C基础笔记(数组)的主要内容,如果未能解决你的问题,请参考以下文章