3.已知在文件IN11.DAT中存有若干個(gè)(個(gè)數(shù)<200)4位數(shù)字的正整數(shù),函數(shù)ReadDat() 的功能是讀取這若干個(gè)正整數(shù)并存入數(shù)組xx中。請(qǐng)編制函數(shù)CalValue(),其功能要求:(1)求出該文件中共有多少個(gè)正整數(shù)totNum;(2)求這些數(shù)右移1位后,產(chǎn)生的新數(shù)是偶數(shù)的數(shù)的個(gè)數(shù)totCnt,以及滿足此條件的這些數(shù)(右移前的值)的算術(shù)平均值totPjz,最后調(diào)用函數(shù)WriteDat()把所求的結(jié)果輸出到文件OUT11.DAT中。
注意:部分源程序已給出。
請(qǐng)勿改動(dòng)主函數(shù)main()、讀函數(shù)ReadDat()和寫函數(shù)WriteDat()的內(nèi)容。
#include
#include
#define MAXNUM 200
int xx[MAXNUM] ;
int totNum = 0 ; /* 文件IN11.DAT中共有多少個(gè)正整數(shù) */
int totCnt = 0 ; /* 符合條件的正整數(shù)的個(gè)數(shù) */
double totPjz = 0.0 ; /* 平均值 */
int ReadDat(void) ;
void Writedat(void) ;
void CalValue(void)
{
int i; /*定義循環(huán)控制變量*/
int data; /*用于保存處理后產(chǎn)生的新數(shù)*/
for(i=0;i<200;i++) /*逐個(gè)取數(shù)組xx中的數(shù)進(jìn)行統(tǒng)計(jì)*/
if(xx[i]>0) /*判斷是否正整數(shù)*/
{
totNum++; /*統(tǒng)計(jì)正整數(shù)的個(gè)數(shù)*/
data=xx[i]>>1; /*將數(shù)右移一位*/
if(data%2==0) /*如果產(chǎn)生的新數(shù)是偶數(shù)*/
{
totCnt++; /*統(tǒng)計(jì)這些數(shù)的個(gè)數(shù)*/
totPjz+=xx[i]; /*并將滿足條件的原數(shù)求和*/
}
}
totPjz/=totCnt; /*求滿足條件的這些數(shù)(右移前的值)的算術(shù)平均值*/
}
void main()
{
int i ;
system("CLS");
for(i = 0 ; i < MAXNUM ; i++)
xx[i] = 0 ;
if (ReadDat ())
{
printf("數(shù)據(jù)文件IN11.DAT不能打開!\007\n");
return ;
}
CalValue() ;
printf("文件IN11.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 ("IN11.DAT", "r")) == NULL)
return 1 ;
while(! feof(fp))
{
fscanf(fp, "%d,", &xx[i++]) ;
}
fclose(fp) ;
return 0 ;
}
void Writedat(void)
{
FILE *fp;
fp = fopen("OUT11.DAT", "w") ;
fprintf(fp, "%d\n%d\n%.2lf\n", totNum, totCnt, totPjz) ;
fclose(fp) ;
}
4.已知數(shù)據(jù)文件IN12.DAT中存有300個(gè)4位數(shù),并已調(diào)用讀函數(shù)readDat()把這些數(shù)存入數(shù)組a中。請(qǐng)編制函數(shù)jsValue(),其功能是:求出千位數(shù)上的數(shù)加個(gè)位數(shù)上的數(shù)等于百位數(shù)上的數(shù)加十位數(shù)上的數(shù)的個(gè)數(shù)cnt,再把所有滿足此條件的4位數(shù)依次存入數(shù)組b中,然后對(duì)數(shù)組b的4位數(shù)按從小到大的順序進(jìn)行排序,最后調(diào)用寫函數(shù)writeDat()把數(shù)組b中的數(shù)輸出到OUT12.DAT文件中。
例如:6712,6+2=7+1,則該數(shù)滿足條件,存入數(shù)組b中,且個(gè)數(shù)cnt=cnt+1。
8129,8+9≠1+2,則該數(shù)不滿足條件,忽略。
注意:部分源程序已給出。
程序中已定義數(shù)組:a[300],b[300],已定義變量:cnt。
請(qǐng)勿改動(dòng)主函數(shù)main()、讀函數(shù)readDat()和寫函數(shù)writeDat()的內(nèi)容。
#include
int a[300], b[300], cnt=0;
void readDat();
void writeDat();
void jsValue()
{
int i,j; /*定義循環(huán)控制變量*/
int a1,a2,a3,a4; /*定義變量保存4位數(shù)的每位數(shù)字*/
int temp; /*定義數(shù)據(jù)交換時(shí)的暫存變量*/
for(i=0;i<300;i++) /*逐個(gè)取每一個(gè)4位數(shù)*/
{
a4=a[i]/1000; /*求4位數(shù)的千位數(shù)字*/
a3=a[i]%1000/100; /*求4位數(shù)的百位數(shù)字*/
a2=a[i]%100/10; /*求4位數(shù)的十位數(shù)字*/
a1=a[i]%10; /*求4位數(shù)的個(gè)位數(shù)字*/
if(a4+a1==a3+a2) /*如果千位數(shù)加個(gè)位數(shù)等于百位數(shù)加十位數(shù)*/
{
b[cnt]=a[i]; /*將滿足條件的數(shù)存入數(shù)組b中*/
cnt++; /*統(tǒng)計(jì)滿足條件的數(shù)的個(gè)數(shù)cnt*/
}
}
for(i=0;i
for(j=i+1;j
if(b[i]>b[j])
{
temp=b[i];
b[i]=b[j];
b[j]=temp;
}
}
void main()
{
int i;
readDat();
jsValue();
writeDat();
printf("cnt=%d\n", cnt);
for(i=0; i
printf("b[%d]=%d\n", i, b[i]);
}
void readDat()
{
FILE *fp;
int i;
fp = fopen("IN12.DAT", "r");
for(i=0; i<300; i++)
fscanf(fp, "%d,", &a[i]);
fclose(fp);
}
void writeDat()
{
FILE *fp;
int i;
fp = fopen("OUT12.DAT", "w");
fprintf (fp, "%d\n",cnt);
for(i=0; i
fprintf(fp, "%d,\n", b[i]);
fclose(fp);
}
附件下載:計(jì)算機(jī)三級(jí)網(wǎng)絡(luò)技術(shù)精選備考試題(3)
相關(guān)推薦:
各地2016年全國(guó)計(jì)算機(jī)等級(jí)考試報(bào)名時(shí)間匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |