代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/304950/13782500
cpp 随机数组.cpp
#include
#include
const SIZE=15;
void main(){
int arr[SIZE];
int i,high,low;
for(i=0;i
www.eeworm.com/read/303714/13809996
cpp 约瑟夫问题-数组.cpp
#include
void main(){
int n,s,m,i,j,k,w;
scanf("%d,%d,%d",&n,&s,&m);
int p[100];
for(i=1;i=2;i--){
k=(k+m-1)%i;
if(k==0) k=i;
w=p[k];
www.eeworm.com/read/151133/5685911
c 数组递归退出.c
#include
void f2();
int a[13],i,j,b=13;
main()
{
f2();
for(j=0;j
www.eeworm.com/read/151133/5685987
c 数组完全单元.c
#include "stdio.h"
#include"conio.h"
int k=0;
int a[100];
void num(int number)
{
int n1,j,temp=k,i;
for(j = 1 ; j
www.eeworm.com/read/125318/6031454
c 数组递归退出.c
#include
void f2();
int a[13],i,j,b=13;
main()
{
f2();
for(j=0;j
www.eeworm.com/read/485960/6541190
txt 指针与数组.txt
7.2 指针与数组
由上节的例 7.4可知,可用指针变量来访问数组中任一元素,通常将数组的首地址称为数组的指针,而将指向数组元素的指针变量称为指向数组的指针变量。使用指向数组的指针变量来处理数组中的元素,不仅可使程序紧凑,而且还可提高程序的运算速率。
7.2.1 一维数组与指针
1.数组指针
数组的首地址称为数组指针。若定义整型数组a[5],系统为数组分配 ...
www.eeworm.com/read/481249/6646439
c 数组递归退出.c
#include
void f2();
int a[13],i,j,b=13;
main()
{
f2();
for(j=0;j
www.eeworm.com/read/481249/6646529
c 数组完全单元.c
#include "stdio.h"
#include"conio.h"
int k=0;
int a[100];
void num(int number)
{
int n1,j,temp=k,i;
for(j = 1 ; j
www.eeworm.com/read/410461/11286232
cpp 数组正负排序.cpp
#include "stdio.h"
struct sqlist
{
int data [50];
int length;
};
void move(struct sqlist &k)
{
int i=0,j=k.length-1;
int temp;
while (i
www.eeworm.com/read/405283/11466967
c 数组递归退出.c
#include
void f2();
int a[13],i,j,b=13;
main()
{
f2();
for(j=0;j