产后大出血,继则冷汗淋漓,甚则晕厥。其病机是:( )
A.气滞血瘀
B.气不摄血
C.气随血脱
D.气血两虚
E.气血失和
参考答案:C
小题1:Three (孩子) are having lunch.
小题2:My father doesn’t like my job because it’s too ______________(危险).
小题3:How many ___________ (图书馆) are there in your school?
小题4:Mr Wang (教) us science.
小题5:The (开始)of the story is kind of scary.
小题6:Please write and tell me about ___ . (你自己)
小题7:I want to be a singer because it is a (放松的) job.
小题8:The shop is (开着的) from 8:00am to 9:00pm.
小题9:My pen pal is .(法国人)
小题10:The supermarket is (后面)the post office.
阅读以下说明和C函数,填充函数中的空缺,将解答填入答题纸的对应栏内。
【说明】
函数GetDateld(DATE date)的功能是计算并返回指定合法日期date是其所在年份的第几天。例如,date表示2008年1月25日时,函数的返回值为25,date表示2008年3月3日时,函数返回值为63。
函数Kday_Date(int theyear,int k)的功能是计算并返回指定合法年份theyear(theyear≥1900)的第k天(1≤k≤365)所对应的日期。例如,2008年的第60天是2008年2月29日,2009年的第60天是2009年3月
1日。
函数isLeapYear(int y)的功能是判断Y代表的年份是否为闰年,是则返回1,否则返回0。
DATE类型定义如下:
typedef struct{
int year,month,day;
}DATE;
【C函数1】
int GetDateId(DATE date)
{
Const int days_month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
int i,date_id=date.day;
for(i=0;i<____(1)____;i++)
date_id+=days_month[i];
if( ____(2)____&&isLeapYear(date.year))date_id++;
return date_id;
}
【C函数2】
____(3)____Kday_Date(int theyear,int k)
int i;
DATE date;
int days_month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31);
assert(k>=1&&k<=365&&theyear>=1900);/*不满足断言时程序终止*/
date.year=____(4)____;
if(isLeapYear(date.year))days_month[2]++;
for(i=1;;){
k=k—days_month[i++];
if(k<=0){date.day=k+____(5)____;date.month=i一1;break;}
return date;