摘要: #include<stdio.h>main(){ char str[100]={'\0'}; /*字符数组初始化*/ int j=0,i,k=0,n=0; char ch; int c; while((ch=getchar())!='#') /*字符遇到#结束*/ { str[k++]=ch; } 阅读全文
posted @ 2020-09-28 14:03 叶无殇 阅读(70) 评论(0) 推荐(0)