3.已知在文件IN3.DAT中存有100個產(chǎn)品銷售記錄,每個產(chǎn)品銷售記錄由產(chǎn)品代碼dm(字符型4位)、產(chǎn)品名稱mc(字符型10位)、單價dj(整型)、數(shù)量sl(整型)、金額je(長整型)幾部分組成。其中:金額=單價×數(shù)量。函數(shù)ReadDat()的功能是讀取這100個銷售記錄并存入結(jié)構(gòu)數(shù)組sell中。請編制函數(shù)SortDat(),其功能要求:按產(chǎn)品名稱從小到大進行排列,若產(chǎn)品名稱相同,則按金額從小到大進行排列,最終排列結(jié)果仍存入結(jié)構(gòu)數(shù)組sell中,最后調(diào)用函數(shù)WriteDat()把結(jié)果輸出到文件OUT3.DAT中。
注意:部分源程序已給出。
請勿改動主函數(shù)main()、讀函數(shù)ReadDat()和寫函數(shù)WriteDat()的內(nèi)容。
#include
#include
#include
#include
#define MAX 100
typedef struct
{
char dm[5] ; /*產(chǎn)品代碼 */
char mc[11] ;/* 產(chǎn)品名稱 */
int dj ; /* 單價 */
int sl ; /* 數(shù)量 */
long je ; /* 金額*/
} PRO ;
PRO sell [MAX] ;
void ReadDat() ;
void WriteDat() ;
void SortDat()
{
int i,j; /*定義循環(huán)控制變量*/
PRO temp; /*定義數(shù)據(jù)交換時的暫存變量(這里是PRO類型的結(jié)構(gòu)體變量)*/
for(i=0;i<99;i++) /*利用選擇法進行排序*/
for(j=i+1;j<100;j++)
if(strcmp(sell[i].mc,sell[j].mc)>0) /*按產(chǎn)品名稱從小到大進行排列*/
{
temp=sell[i];
sell [i]=sell[j];
sell[j]=temp;
}
else if(strcmp(sell[i].mc,sell[j].mc)==0) /*若產(chǎn)品名稱相同*/
if(sell[i].je>sell[j].je) /*則按金額從小到大進行排列*/
{
temp=sell[i];
sell[i]=sell[j];
sell[j]=temp;
}
}
void main()
{
memset(sell, 0, sizeof(sell)) ;
ReadDat() ;
SortDat() ;
WriteDat() ;
}
void ReadDat()
{
FILE *fp ;
char str[80], ch[11] ;
int i ;
fp = fopen("IN3.DAT", "r") ;
for (i = 0 ; i < 100 ; i++)
{
fgets(str, 80, fp) ;
memcpy(sell[i].dm, str, 4) ;
memcpy(sell[i].mc, str + 4, 10) ;
memcpy(ch, str + 14, 4) ; ch[4] = 0 ;
sell[i].dj = atoi(ch) ;
memcpy(ch, str +18, 5) ; ch[5] = 0 ;
sell[i].sl = atoi(ch) ;
sell[i].je = (long)sell[i].dj * sell[i].sl;
}
fclose(fp) ;
}
void WriteDat() {
FILE *fp;
int i ;
fp = fopen("OUT3.DAT", "w") ;
for(i = 0 ; i < 100 ; i++)
{
fprintf(fp, "%s %s %4d %5d %10ld\n", sell[i].dm, sell[i].mc, sell[i].dj,sell[i].sl, sell[i].je) ;
}
fclose(fp) ;
}
4.函數(shù)ReadDat()的功能是實現(xiàn)從文件ENG4.IN中讀取一篇英文文章,存入到字符串?dāng)?shù)組xx中。請編制函數(shù)encryptChar(),按給定的替代關(guān)系對數(shù)組xx中的所有字符進行替代,結(jié)果仍存入數(shù)組xx對應(yīng)的位置上,最后調(diào)用函數(shù)WriteDat()把結(jié)果xx輸出到文件PS4.DAT中。
替代關(guān)系:f(p)=p*11 mod 256(p是數(shù)組xx中某一個字符的ASCII值,f(p)是計算后新字符的ASCII值),如果計算后f(p)的值小于等于32或大于130,則該字符不變,否則將f(p)所對應(yīng)的字符進行替代。
注意:部分源程序已給出。
原始數(shù)據(jù)文件存放的格式是:每行的寬度均小于80個字符。
請勿改動主函數(shù)main()、讀函數(shù)ReadDat()和寫函數(shù)WriteDat()的內(nèi)容。
#include
#include
#include
#include
unsigned char xx[50][80] ;
int maxline = 0 ;/* 文章的總行數(shù) */
int ReadDat(void) ;
void WriteDat(void) ;
void encryptChar()
{
int i,j; /*定義循環(huán)控制變量*/
int str; /*存儲字符串的長度*/
char ch; /*存儲當(dāng)前取得的字符*/
for(i=0;i
{
str=strlen(xx[i]); /*求得當(dāng)前行的字符串長度*/
for(j=0;j
{
ch=xx[i][j]*11%256;
if(ch<=32 || ch>130)
continue; /*如果計算后的值小于等于32或大于130,則該字符不變*/
else
xx[i][j]=ch; /*否則將所對應(yīng)的字符進行替代*/
}
}
}
void main()
{
system("CLS");
if(ReadDat())
{
printf("數(shù)據(jù)文件ENG4.IN不能打開!\n\007") ;
return ;
}
encryptChar() ;
WriteDat() ;
}
int ReadDat(void)
{
FILE *fp;
int i = 0 ;
unsigned char *p ;
if((fp = fopen("ENG4.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("PS4.DAT", "w") ;
for(i = 0 ; i < maxline ; i++)
{
printf("%s\n", xx[i]) ;
fprintf(fp, "%s\n", xx[i]) ;
}
fclose(fp) ;
}
附件下載:計算機三級網(wǎng)絡(luò)技術(shù)精選備考試題(1)
相關(guān)推薦:
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |