真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

南京郵電大學(xué)高級(jí)語(yǔ)言程序設(shè)計(jì)實(shí)驗(yàn)六(結(jié)構(gòu)體與文件實(shí)驗(yàn))-創(chuàng)新互聯(lián)

文章目錄
    • 一、 實(shí)驗(yàn)?zāi)康暮鸵?/li>
    • 二、實(shí)驗(yàn)環(huán)境(實(shí)驗(yàn)設(shè)備)
    • 三、實(shí)驗(yàn)原理及內(nèi)容
      • 實(shí)驗(yàn)題目(1)【見實(shí)驗(yàn)教材實(shí)驗(yàn)八的題目3】:
        • ① 源程序代碼如下:
        • ② 運(yùn)行程序時(shí),依次輸入下面的幾組年月日數(shù)據(jù)作為測(cè)試用例,觀察程序的運(yùn)行情況
      • 實(shí)驗(yàn)題目(2)【見實(shí)驗(yàn)教材實(shí)驗(yàn)九的題目1】:
      • 實(shí)驗(yàn)題目(3)【見實(shí)驗(yàn)教材實(shí)驗(yàn)九的題目2】:
        • ①請(qǐng)寫出完整的源程序代碼并做適當(dāng)注釋:
        • ② 運(yùn)行程序,你從鍵盤輸入的內(nèi)容以及屏幕顯示的結(jié)果如下:
    • 四、實(shí)驗(yàn)小結(jié)(包括問(wèn)題和解決方法、心得體會(huì)、意見與建議、實(shí)驗(yàn)出錯(cuò)信息及解決方案等)
      • (一)實(shí)驗(yàn)中遇到的主要問(wèn)題及解決方法
      • (二)實(shí)驗(yàn)心得
      • (三)意見與建議(沒(méi)有可省略)

創(chuàng)新互聯(lián)建站專注于臨漳企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),商城建設(shè)。臨漳網(wǎng)站建設(shè)公司,為臨漳等地區(qū)提供建站服務(wù)。全流程按需制作網(wǎng)站,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)一、 實(shí)驗(yàn)?zāi)康暮鸵?p>(1)掌握結(jié)構(gòu)體類型以及結(jié)構(gòu)體變量的定義與使用。
(2)綜合運(yùn)用結(jié)構(gòu)體、數(shù)組、指針等知識(shí),解決相關(guān)問(wèn)題。
(3)會(huì)正確定義FILE*指針,掌握文件操作從打開、讀寫到關(guān)閉的完整過(guò)程。
(4)理解文本文件和二進(jìn)制文件的區(qū)別和不同的讀寫方式。

二、實(shí)驗(yàn)環(huán)境(實(shí)驗(yàn)設(shè)備)

硬件: 微型計(jì)算機(jī)
軟件: Windows 操作系統(tǒng)、Microsoft Visual Studio 2010

三、實(shí)驗(yàn)原理及內(nèi)容 實(shí)驗(yàn)題目(1)【見實(shí)驗(yàn)教材實(shí)驗(yàn)八的題目3】:

編寫程序exp8_3.c,驗(yàn)證用戶輸入的日期格式是否正確,如果不正確,則提示重新輸入,直到重新輸入正確為止。(提示:需要定義一個(gè)表示日期的結(jié)構(gòu)體類型struct Date,包括年、月、日信息,并用typedef重新定義新類型名Date;檢查日期是否有效,定義為函數(shù)int checkDate(Date date))。

實(shí)驗(yàn)解答:

① 源程序代碼如下:
#includestruct Date
{int year;
	int month; 
	int day;
};
typedef struct Date Date;
int checkData(Date date)
{if (date.year< 1900 || date.year>2018)
	{return 0;
	}
	if (date.month< 1 || date.month>12)
	{return 0;
	}
	if (date.month == 1 ||
		date.month == 3 ||
		date.month == 5 ||
		date.month == 7 ||
		date.month == 8 ||
		date.month == 10 ||
		date.month == 12  )
	{if (date.day< 1 || date.day >31)
		{	return 0;
		}
	}
	else if (date.month == 4 ||
			date.month == 6 ||
			date.month == 9 ||
			date.month == 11)
	{if (date.day< 1 || date.day >30)
		{	return 0;
		}
	}
	else
	{if (date.year % 4 == 0 && date.year % 100 != 0 || date.year % 400 == 0)
		{	if (date.day< 1 || date.day >29)
			{		return 0;
			}
		}
		else
		{	if (date.day< 1 || date.day >28)
			{		return 0;
			}
		}
	}
	return 1;
}

int main()
{Date date; int flag;
	do
	{printf("please input date!\n");
		scanf_s("%d%d%d", &date.year, &date.month, &date.day);
		flag = checkData(date);
		if (flag)
		{	printf("The date is valid!\n");
		}
		else
		{	printf("Invalid date!\n");
		}
	} while (!flag);
	return 0;
}
② 運(yùn)行程序時(shí),依次輸入下面的幾組年月日數(shù)據(jù)作為測(cè)試用例,觀察程序的運(yùn)行情況
測(cè)試用例	輸入的原始數(shù)據(jù)	需要重新輸入或你的輸出結(jié)果

用例1	2002  4  31	please input date!
2002  4  31
Invalid date!
please input date!
用例2	1809  12  3	please input date!
1809  12  3
Invalid date!
please input date!
用例3	2020  5  4	please input date!
2020  5  4
Invalid date!
please input date!
用例4	2000  2  29	please input date!
2000  2  29
The date is valid!
用例5	1908  14  23	please input date!
1908  14  23
Invalid date!
please input date!
用例6	2003  11  -8	please input date!
2003  11  -8
Invalid date!
please input date!
用例7	1996  2  31	please input date!
1996  2  31
Invalid date!
please input date!
用例8	1996  5  19	please input date!
1996  5  19
The date is valid!
實(shí)驗(yàn)題目(2)【見實(shí)驗(yàn)教材實(shí)驗(yàn)九的題目1】:

編寫程序exp9_1.c ,從鍵盤讀入一系列字符并以“#”結(jié)束,將讀入的字符(不包括#號(hào))存入文本文件D:\f1.txt中,再?gòu)脑撐募x取內(nèi)容,并在顯示器上原樣顯示。

實(shí)驗(yàn)解答: 寫出完整的源程序代碼并做適當(dāng)注釋:

#include#includevoid writeFile(int ch, FILE* fp);
void readFile(int ch, FILE* fp);
int main()
{FILE* fp; 
	char ch = 0;
	fp = fopen("D:\\f1.txt", "w+");
	if (fp == NULL)   
	{printf("file error\n");
		exit(1);
	}
	writeFile(ch, fp);
	rewind(fp);
	readFile(ch, fp);
	fclose(fp);
	return 0;
}
void writeFile(int ch, FILE* fp)      
{printf("Please enter a string of characters ending with #:\n");
	ch = getchar();
	while (ch != '#')
	{fputc(ch, fp);
		ch = getchar();
	}
}
void readFile(int ch, FILE* fp)       
{while ((ch = fgetc(fp)) != EOF)
	{putchar(ch);
	}
	printf("\n");
}
實(shí)驗(yàn)題目(3)【見實(shí)驗(yàn)教材實(shí)驗(yàn)九的題目2】:

某班有學(xué)生若干名(不超過(guò)40名),其信息的組織采用如下的結(jié)構(gòu)體定義。編寫程序exp9_2.c,完成要求的功能。

struct Student
{char ID[20];
	char name[30];
	int age;
	double score;
};
  1. 從鍵盤讀入該班級(jí)學(xué)生的信息。
  2. 將所有的學(xué)生信息存入D:\Info.dat文件中、關(guān)閉該文件,建立文件定義函數(shù)CreateFile實(shí)現(xiàn)。
  3. 另寫一個(gè)函數(shù)ReadOut,將D:\Info.dat文件中的信息讀入到內(nèi)存,并依次輸出到顯示器上,該函數(shù)由main函數(shù)調(diào)用。
  4. 編寫函數(shù)Sort,實(shí)現(xiàn)按成績(jī)由高到低將學(xué)生記錄進(jìn)行排序并輸出排序后的結(jié)果。
  5. 文件讀寫采用二進(jìn)制讀寫(fread、fwrite)方式。

實(shí)驗(yàn)解答:

①請(qǐng)寫出完整的源程序代碼并做適當(dāng)注釋:
#include#includestruct Student
{char ID[20];
	char name[30];
	int age;
	double score;
};
typedef struct Student Stu;
#define N 50
void CreateFile(Stu [],int n,FILE *fp);
void ReadOut(Stu [],int n,FILE *fp);
void Sort(Stu [],int len);
int main()
{int n,i,x;
	Stu stu[N];
	FILE *fp=NULL;                       
	do
	{printf("Please input the number of students:\n");
	    scanf("%d",&n);
	}while(n<1||n>40);
	for(i=0;ix=i+1;
		printf("%d(ID name age score):\n",x);
		scanf("%s%s%d%lf",stu[i].ID,stu[i].name,&stu[i].age,&stu[i].score);
	}
	CreateFile(stu,n,fp);
	printf("before being sorted:\n");
	ReadOut(stu,n,fp);
	printf("after being sorted:\n");
    Sort(stu,n);
	return 0;
}
void CreateFile(Stu stu[],int n,FILE *fp)
{fp=fopen("D:\\Info.dat","wb+");
	if(fp==0)                       //文?件t打?¨°開a后¨?需¨¨判D斷?是o?否¤?正y確¨?¤
	{printf("file error\n");
		exit(1);
	}
	fwrite(stu,sizeof(Stu),n,fp);
	fclose(fp);
}
void ReadOut(Stu stu[],int n,FILE *fp)
{int i=0;
	fp=fopen("D:\\Info.dat","rb");
	if(fp==0)                       //文?件t打?¨°開a后¨?需¨¨判D斷?是o?否¤?正y確¨?¤
	{printf("file error\n");
		exit(1);
	}
	fread(&stu[i],sizeof(Stu),n,fp);
	for(i=0;iint i,k,index;
	Stu temp;
	for(k=0;kindex=k;
		for(i=k+1;istu[index].score)
				index=i;
		if(index!=k)
		{	temp=stu[index];
			stu[index]=stu[k];
			stu[k]=temp;
		}
	}
	for(i=0;i
② 運(yùn)行程序,你從鍵盤輸入的內(nèi)容以及屏幕顯示的結(jié)果如下:
Please input the number of students:

3
1(ID name age score):
101 a 19 90
2(ID name age score):
102 b 18 99
3(ID name age score):
103 y 20 78
before being sorted:
101 a 19 90.00
102 b 18 99.00
103 y 20 78.00
after being sorted:
102 b 18 99.00
101 a 19 90.00
103 y 20 78.00
請(qǐng)按任意鍵繼續(xù). . .
四、實(shí)驗(yàn)小結(jié)(包括問(wèn)題和解決方法、心得體會(huì)、意見與建議、實(shí)驗(yàn)出錯(cuò)信息及解決方案等) (一)實(shí)驗(yàn)中遇到的主要問(wèn)題及解決方法

驗(yàn)證日起合法性的判斷條件,太繁瑣??磿系睦}后找到可以將月份的天數(shù)存入數(shù)組。

(二)實(shí)驗(yàn)心得

對(duì)于文件的操作還應(yīng)該繼續(xù)熟悉與拓展。
多上機(jī)調(diào)試。

(三)意見與建議(沒(méi)有可省略)

你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級(jí)服務(wù)器適合批量采購(gòu),新人活動(dòng)首月15元起,快前往官網(wǎng)查看詳情吧


分享文章:南京郵電大學(xué)高級(jí)語(yǔ)言程序設(shè)計(jì)實(shí)驗(yàn)六(結(jié)構(gòu)體與文件實(shí)驗(yàn))-創(chuàng)新互聯(lián)
新聞來(lái)源:http://weahome.cn/article/dhiehc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部