硬件: 微型計(jì)算機(jī)
軟件: Windows 操作系統(tǒng)、Microsoft Visual Studio 2010
編寫程序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;
};
實(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)試。
你是否還在尋找穩(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)查看詳情吧