|

楼主 |
发表于 2020-2-15 20:01:58
|
显示全部楼层
#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
#include<math.h>
#include<string.h>
//writing in 2020/2/15/12:38
#define MAXSIZE 100
#define ERROR 0
#define OK 1
typedef char Element;
typedef struct{
Element Data[MAXSIZE];
int ListLen; //数组的长度,数组最后一个元素的下标是Listlen-1
}StaticList;
void Init_StaticList(StaticList L)
{
L.ListLen = 0;
}
void Creat_Buf(StaticList L)
{
Element e;
printf("please inpur data...:\r\n");
scanf("%c",&e);
while('#' != e)
{
L.Data[L.ListLen] = e;
L.ListLen =L.ListLen +1;
scanf("%c",&e);
}
}
void Print_Buf(StaticList L)
{
int len;
int i;
len = L.ListLen;
for(i=0; i<len ;i++)
{
printf("%c ",L.Data[i]);
}
}
int main(void)
{
StaticList L;
Init_StaticList(L);
Creat_Buf(L);
printf("\r\n%c",L.Data[1]);
printf("\r\n%d",L.ListLen);
Print_Buf(L);
getchar();
getchar();
return 0;
}
8好意思 |
|