一般经典C资料群共享都有收藏
欢迎各路高手进群讨论
[此贴子已经被作者于2005-11-30 18:19:06编辑过]
--------------------------------
2005-11-27 20:47:10 烈愛傷痕(64862498)
一个星期发到这里面都没问题..
2005-11-27 23:57:50 C-碎心竹/ty(1935259)
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <conio.h>
#include <assert.h>
#define MAX 2000
#define TEST
#undef TEST
char s[MAX];
char *str ="text.txt";
void create_file(void);
int word_count(void);
int word_check(void);
int line_find(char *s,char *chs,int to,int info);
int menu(void);
main(){
while(menu())
;
return 0;
}
int menu(void){
char ch;
system("cls");
printf("1-----------Create the file\n");
printf("2-----------Count the word\n");
printf("3-----------Check the word\n");
printf("4-----------Exit the program\n");
printf(" Please give a chioce!\n");
ch=getch();
switch(ch){
case '1':create_file();break;
case '2':word_count();break;
case '3':word_check();break;
case '4': return 0;
default:{printf("\nYou entered the worry char,please try again!"); getch();break;}
..........................
printf(" in %d LINI a %d times\n",t,num);
}
i = 0;
}
}
system("pause");
return 1;
}
/*
这个程序功能是:
(1)要求编程建立一个文本文件,每个单词不包含空格且不跨行,单词由字符序列构成且区分大小写;
(2)统计给定单词在文本文件中出现的总次数;
(3)检索输出某个单词出现在文本中的行号、在该行中出现的次数以及位置。
*/
OK了 你测试看看
----------------------------
自己看看日期 真他妈的不是东西 垃圾群也不你该说的
[此贴子已经被作者于2005-11-30 18:39:40编辑过]