試題四:函數ReadDat()實現從文件ENG.IN中讀取一篇英文文章,存入到字符串數組xx中;請編制函數encryptChar(),按給定的替代關系對數組xx中的所有字符進行替代,仍存入數組xx的對應的位置上,最后調用函數WriteDat()把結果xx輸出到文件PS5.DAT中。
替代關系:f(p)=p*11mod 256 (p是數組中某一個字符的ASCII值,f(p)是計算后新字符的ASCII值),如果計算后f(p)值小于等于32或f(p)對應的字符是小寫字母,則該字符不變,否則將f(p)所對應的字符進行替代。
注意:部分源程序已給出。原始數據文件存放的格式是:每行的寬度均小于80個字符。
請勿改動主函數main()、讀數據函數ReadDat()和輸出數據函數WriteDat()的內容。
------------------------------
PROG1.C
#include
#include
#include
#include
unsigned char xx[50][80];
int maxline=0;/*文章的總行數*/
int ReadDat(void);
void WriteDat(void);
void encryptChar()
{
}
void main()
{
clrscr();
if(ReadDat()){
printf("數據文件ENG.IN不能打開!\n\007");
return;
}
encryptChar();
WriteDat();
system("pause");
}
int ReadDat(void)
{
FILE *fp;
int i=0;
unsigned char *p;
if((fp=fopen("eng.in","r"))==NULL) return 1;
while(fgets(xx[i],80,fp)!=NULL){
p=strchr(xx[i],'\n');
if(p)*p=0;
i++;
}
maxline=i;
fclose(fp);
return 0;
}
void WriteDat(void)
{
FILE *fp;
int i;
fp=fopen("ps5.dat","w");
for(i=0;i printf("%s\n",xx[i]); fprintf(fp,"%s\n",xx[i]); } fclose(fp); } /*標準答案*/ void encryptChar() {int I; char *pf; for(I=0;I {pf=xx[I]; while(*pf!=0) { if ((*pf*11%256>='a'&&*pf*11%256<='z')||*pf*11%256<=32) {pf++;continue;} *pf=*pf*11%256; pf++;} } } 或者: void encryptChar() {int i,j,t; for(i=0;i {for(j=0;j {t=xx[i][j]*11%256; if(t<=32 ||(t>='a' && t<='z')) continue; xx[i][j]=t;}} }
2010年計算機等考三級網絡技術歷年考點知識
計算機等級考試三級網絡技術六套全真模擬題
2010年計算機等考三級網絡技術知識點筆記匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內蒙古 |