int totNum = 0 ; /* 文件IN.DAT中共有多少個(gè)正整數(shù) */
int totCnt = 0 ; /* 符合條件的正整數(shù)的個(gè)數(shù) */
double totPjz = 0.0 ; /* 平均值 */
int ReadDat(void) ;
void WriteDat(void) ;
void CalValue(void)
{
}
void main()
{
clrscr() ;
if(ReadDat()) {
printf(“數(shù)據(jù)文件IN.DAT不能打開!\007\n”) ;
return ;
}
CalValue() ;
printf(“文件IN.DAT中共有正整數(shù)=%d個(gè)\n”, totNum) ;
printf(“符合條件的正整數(shù)的個(gè)數(shù)=%d個(gè)\n”, totCnt) ;
printf(“平均值=%.2lf\n”, totPjz) ;
WriteDat() ;
}
int ReadDat(void)
{
FILE *fp ;
int i = 0 ;
if((fp = fopen(“in.dat”, “r”)) == NULL) return 1 ;
while(!feof(fp)) {
fscanf(fp, “%d,”, &xx[i++]) ;
}
fclose(fp) ;
return 0 ;
}
void WriteDat(void)
{
FILE *fp ;
fp = fopen(“OUT8.DAT”, “w”) ;
fprintf(fp, “%d\n%d\n%.2lf\n”, totNum, totCnt, totPjz) ;
fclose(fp) ;
}
16./* 編寫一個(gè)函數(shù)findstr(),該函數(shù)統(tǒng)計(jì)一個(gè)長(zhǎng)度為2的子字符串在另一個(gè)字符串中出現(xiàn)的次數(shù)。例如,假定輸入的字符串為“asd asasdfg asd as zx67 asd mklo”,子字符串為“as”,則輸出6。 函數(shù)ReadWrite()實(shí)現(xiàn)從文件in1.dat中讀取兩個(gè)字符串,并調(diào)用函數(shù)findStr(),最后把結(jié)果輸出到文件out1.dat中。
注意:部分源程序存在文件PROG1.C中。請(qǐng)勿改動(dòng)主函數(shù)main()和其它函數(shù)中的任何內(nèi)容,僅在函數(shù)findStr()的花括號(hào)中填入你編寫的若干語(yǔ)句。*/
#include
#include
#include
int findStr(char *str,char *substr)
{
}
main()
{
char str[81], substr[3] ;
int n ;
clrscr() ;
gets(str) ;
gets(substr) ;
puts(str) ;
puts(substr) ;
n=findStr(str, substr) ;
printf(“n=%d\n”, n) ;
ReadWrite() ;
}
ReadWrite()
{
char str[81], substr[3], ch;
int n, len, i = 0;
FILE *rf, *wf ;
rf = fopen(“in1.dat”, “r”) ;
wf = fopen(“out1.dat”, “w”) ;
while(i 《 5) {
fgets(str, 80, rf) ;
fgets(substr, 10, rf) ;
len = strlen(substr) - 1 ;
ch = substr[len] ;
if(ch == ’\n’ || ch == 0x1a) substr[len] = 0 ;
n=findStr(str, substr);
fprintf(wf, “%d\n”, n) ;
i++ ;
}
fclose(rf) ;
fclose(wf) ;
}
17./* 請(qǐng)編寫函數(shù)Void countValue(int *a,int *n),它的功能是:求出1到1000之內(nèi)能被7或11整除但不能同時(shí)被7和11整除的所有整數(shù),并放在數(shù)組a中,然后通過(guò)n返回這些數(shù)的個(gè)數(shù)。
注意:部分源程序存入在PROG1.C中。
請(qǐng)改動(dòng)主函數(shù)main()和輸入輸出數(shù)據(jù)函數(shù)WriteDAT()的內(nèi)容。*/
#include
int cnt, sum ;
相關(guān)推薦:
2012年計(jì)算機(jī)等級(jí)考試二級(jí)VB重點(diǎn)知識(shí)匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |