首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴CAT119的代码贴C语言
#include <stdio.h>
#include <stdlib.h>
#include <string.h> 
#define MAX 10
int main()
{
     char str[MAX];
 int i=0;
 int count=6;
 int strIndxe=-1;         //记录要删除该数字的下标 
 char Seachstr[MAX];
 printf("请输入6个字符:");
......................
阅读全部 | 2018年2月21日 00:45
1
CAT119