barriers / 阅读 / 详情

1个C语言程序设计问题

2023-06-28 19:25:41
共6条回复
FinCloud
#include<stdlib.h>
#include<stdio.h>
#include<iostream.h>

typedef struct BookInfo /////图书结构
{
int b_Code; ////图书编号
char b_Name[20]; /////名称
int b_Total; /////总数
int b_Out; ///借出数
BookInfo* nextbook; //////下一类图书
}BookInfo;

typedef struct MemberInfo ///会员结构
{
long m_Code; /////会员编号
char m_Name[20]; ////会员名字
int l_Codes[6]; /////以借书的编号,最多5
MemberInfo* nextmember; ////下一会员
}MemberInfo;

typedef struct System ///管理系统结构
{
BookInfo* BI;
MemberInfo* MI;
int BookTotal; ////图书类库存量
int MemberTota; /////会员数量
}System;

System* InitSystem();/////
void AddBook(System*);////增加图书
BookInfo* SearchBook(System*,int);////查询图书信息

void DelBook(System*);/////删除图书

void BrrowBook(System*);///////借书处理
void TurnBackBook(System*);////还书处理

void AddMember(System*);/////添加会员
void DelMember(System*);////删除会员
MemberInfo* SearchMember(System*,int);/////查询会员信息

void StoreData(System*);

void LoadData(System*);
void ExitSystem();
void main()
{
System* S=InitSystem();
int sel;
do
{
cout<<" 图书管理系统"<<endl;
cout<<" ******************************"<<endl;
cout<<" ******************************"<<endl;
cout<<" 1.增加图书. 2.查询图书. 3.删除图书. 4.借书处理. 5.还书处理. 6.添加会员. 7.删除会员. 8.查询会员. 9.载入数据. 10.保存数据. 11.退出程序. ";
cout<<" ******************************"<<endl;
cout<<" ******************************"<<endl;
cout<<"请选择:";
do
{
cin>>sel;
if (sel>=1&&sel<=11)break;
cout<<"选择错误! 重新输入:"<<endl;
}
while (1);
switch (sel)
{
case 1:
AddBook(S);
break;
case 2:
SearchBook(S,-1);
break;
case 3:
DelBook(S);
break;
case 4:
BrrowBook(S);;
break;
case 5:
TurnBackBook(S);
break;
case 6:
AddMember(S);
break;
case 7:
DelMember(S);
break;
case 8:
SearchMember(S,-1);
break;
case 9:
LoadData(S);
break;
case 10:
StoreData(S);
break;
default:
ExitSystem();
}
}
while (1);
}
System* InitSystem()
{
System* S=(System*)malloc(sizeof(System));
S->BI=(BookInfo*)malloc(sizeof(BookInfo));
S->BookTotal=0;
S->BI->nextbook=NULL;
S->MI=(MemberInfo*)malloc(sizeof(MemberInfo));
S->MemberTota=0;
S->MI->nextmember=NULL;
return S;
}
void AddBook(System* S)
{
int Tempcode;
char sel;
BookInfo* p=S->BI;
BookInfo* t;
BookInfo* m;
int num;
do
{
cout<<"输入图书编号:";
cin>>Tempcode;
if (m=SearchBook(S,Tempcode))
{
cout<<"这类书以有库存. 输入图书的入库量:"<<endl;
cin>>num;
m->b_Total+=num;
}
else
{
t=(BookInfo*)malloc(sizeof(BookInfo));
t->b_Code=Tempcode;
cout<<"输入图书的名称:";
cin>>t->b_Name;
cout<<"输入图书的入库量:";
cin>>t->b_Total;
t->b_Out=0;
t->nextbook=p->nextbook;
p->nextbook=t;
S->BookTotal++;
}
cout<<"添加完毕!"<<endl;
cout<<"还要添加吗?(Y/N)";
cin>>sel;
if (sel=="n"||sel=="N")
{
cout<<"结束添加"<<endl;
return;
}
}
while (1);
}
BookInfo* SearchBook(System* S,int code)
{
BookInfo* bi=S->BI->nextbook;
int bookcode;
if (code==-1)
{
cout<<"请输入要查询的图书编号:";
cin>>bookcode;
}
else bookcode=code;
while (bi&&bi->b_Code!=bookcode)bi=bi->nextbook;
if (code==-1)
{
if (!bi)cout<<"没找到你所要的图书."<<endl;
else
{
cout<<"图书编号为:"<<bi->b_Code<<endl;
cout<<"图书名称为:"<<bi->b_Name<<endl;
cout<<"图书库存量为:"<<bi->b_Total<<endl;
cout<<"图书借出量为:"<<bi->b_Out<<endl;
}
}
return bi;
}

void DelBook(System* S)
{
BookInfo* bi;
BookInfo* pl=S->BI;
MemberInfo* memi;
char sel;
int tempcode;
int i;
do
{
pl=S->BI;
bi=pl->nextbook;
memi=S->MI->nextmember;

cout<<"请输入要删除的图书的编号:";
cin>>tempcode;
while (bi)
{
if (bi->b_Code==tempcode)break;
pl=bi;
bi=bi->nextbook;
}
if (bi==0)cout<<"没有找到要删除的图书"<<endl;
else
{
pl->nextbook=bi->nextbook;
S->BookTotal--;
while (memi)
{
for (i=1;i<=memi->l_Codes[0];i++)
{
if (memi->l_Codes[i]==tempcode)break;
}

if (i<=memi->l_Codes[0])
{
for (;i<memi->l_Codes[0];i++)memi->l_Codes[i]=memi->l_Codes[i+1];
memi->l_Codes[0]--;
}
memi=memi->nextmember;
}
free(bi);
}
cout<<"还有图书要删除吗?(Y/N)";
cin>>sel;
if (sel=="N"||sel=="n")
{
cout<<"删除图书结束"<<endl;
return;
}
}
while (1);
}
void BrrowBook(System* S)
{
BookInfo* bi=S->BI->nextbook;
BookInfo* p;
char sel;
int memcode;
MemberInfo* mp;
int tempcode;
do
{
cout<<"输入要借出的书号:";
cin>>tempcode;
p=SearchBook(S,tempcode);
if (!p)
{
cout<<"没有找到要借出的图书."<<endl;
}
else
{
cout<<"此书的现存量为"<<(p->b_Total-p->b_Out)<<endl;
if (!(p->b_Total-p->b_Out))cout<<"没有足够的书了,外借失败."<<endl;
else
{
cout<<"请输入会员编号:";
cin>>memcode;
mp=SearchMember(S,memcode);
if (!mp)cout<<"会员编号输入错误,外借失败"<<endl;
else
{
if (mp->l_Codes[0]==5)cout<<"借书量不能超过5本";
else
{
p->b_Out++;
mp->l_Codes[++mp->l_Codes[0]]>=tempcode;
cout<<"外借成功."<<endl;
}
}
}
}
cout<<" 还有图书要借出吗?(Y/N)";
cin>>sel;
if (sel=="N"||sel=="n")
{
cout<<"外借操作结束."<<endl;
return;
}
}
while (1);
}
void TurnBackBook(System* S)
{
BookInfo* bi=S->BI->nextbook;
BookInfo* p;
MemberInfo* mp;
int membercode;
int tempcode;
int i;
char sel;
do
{
cout<<"输入归还书号:";
cin>>tempcode;
p=SearchBook(S,tempcode);
if (!p)
{
cout<<"书号输入错误."<<endl;
}
else
{
cout<<"此书的现存量为"<<(p->b_Total-p->b_Out)<<endl;
cout<<"请输入会员编号:";
cin>>membercode;
if (!(mp=SearchMember(S,membercode)))cout<<"会员编号输入错误,归还失败"<<endl;
else
{
p->b_Out--;
for (i=1;i<=mp->l_Codes[0];i++)
{
if (mp->l_Codes[i]==tempcode)break;
}
while (i<mp->l_Codes[0])
{
mp->l_Codes[i]=mp->l_Codes[i+1];
i++;
}
mp->l_Codes[0]--;
cout<<"归还成功."<<endl;
}
}
cout<<"还有要归还的图书吗?(Y/N)";
cin>>sel;
if (sel=="N"||sel=="n")
{
cout<<"归还结束."<<endl;
return;
}
}
while (1);
}

void AddMember(System* S)
{
int Tempcode;
char sel;
MemberInfo* p=S->MI;
MemberInfo* t;
do
{
cout<<"输入会员编号:";
cin>>Tempcode;
t=(MemberInfo*)malloc(sizeof(MemberInfo));
t->m_Code=Tempcode;
cout<<"输入会员姓名:";
cin>>t->m_Name;
t->l_Codes[0]=0;
t->nextmember=p->nextmember;
p->nextmember=t;
S->MemberTota++;
cout<<"添加完毕!"<<endl;
cout<<"还要添加吗?(Y/N)";
cin>>sel;
if (sel=="n"||sel=="N")
{
cout<<"结束添加"<<endl;
return;
}
}
while (1);
}

MemberInfo* SearchMember(System* S,int code)
{
MemberInfo* bi=S->MI->nextmember;
int membercode;
int i;
if (code==-1)
{
cout<<"请输入要查询的会员编号:";
cin>>membercode;
}
else membercode=code;
while (bi&&bi->m_Code!=membercode)bi=bi->nextmember;
if (code==-1)
{
if (!bi)cout<<"没找到指定会员."<<endl;
else
{
cout<<"会员编号为:"<<bi->m_Code<<endl;
cout<<"名称为:"<<bi->m_Name<<endl;
cout<<"已借的图书有:"<<bi->l_Codes[0]<<"本."<<endl;
for (i=1;i<=bi->l_Codes[0];i++)
cout<<bi->l_Codes[i]<<" ";
cout<<endl;
}
}
return bi;
}
void DelMember(System* S)
{
MemberInfo* bi;
MemberInfo* pl;
BookInfo* book;
char sel;
int i;
int tempcode;
do
{
bi=S->MI->nextmember;
pl=S->MI;
cout<<"请输入要删除的会员的编号:";
cin>>tempcode;
while (bi)
{
if (bi->m_Code==tempcode)break;
pl=bi;
bi=bi->nextmember;
}
if (!bi)cout<<"没有找到要删除的会员编号.";
else
{
pl->nextmember=bi->nextmember;
S->MemberTota--;
for (i=1;i<=bi->l_Codes[0];i++)
{
if (!(book=SearchBook(S,bi->l_Codes[i])))
{
cout<<"删除会员出错!"<<endl;
}
else
{
book->b_Out--;
book->b_Total--;
}
}
free(bi);
}
cout<<"还有会员要删除吗?(Y/N)";
cin>>sel;
if (sel=="N"||sel=="n")
{
cout<<"删除会员结束"<<endl;
return;
}
}
while (1);
}

void StoreData(System* S)
{
FILE* fp;
BookInfo* bi=S->BI->nextbook;
if (!(fp=fopen("BookSys","wb")))
{
cout<<"打开文件BookSys失败!"<<endl;
exit(0);
}
fwrite(&(S->BookTotal),sizeof(int),1,fp);
while (bi)
{
fwrite(bi,sizeof(BookInfo),1,fp);
bi=bi->nextbook;
}
MemberInfo* mi=S->MI->nextmember;
fwrite(&(S->MemberTota),sizeof(int),1,fp);
while (mi)
{
fwrite(mi,sizeof(MemberInfo),1,fp);
mi=mi->nextmember;
}
fclose(fp);
}

void LoadData(System* S)
{
FILE* fp;
if (!(fp=fopen("BookSys","rb")))
{
cout<<"打开文件BookSys失败"<<endl;
exit(0);
}
BookInfo* bi=S->BI;
BookInfo* tempbi;
fread(&(S->BookTotal),sizeof(int),1,fp);
for (int i=1;i<=S->BookTotal;i++)
{
tempbi=(BookInfo*)malloc(sizeof(BookInfo));
马老四
* 回复内容中包含的链接未经审核,可能存在风险,暂不予完整展示!
不是自己编写的,只是看了一下别人的。你借鉴一下啊。
希望能够帮助你。

http://tieba.b***.com/f?kz=17682927

http://tieba.b***.com/f?kz=22241061
和你的要求很贴近,你看看。
max笔记

#include<stdio.h>

#include<string.h>

#include<stdlib.h>

#include<math.h>

typedef struct

{ char name[10]; //姓名

char num[120]; //借阅证号

char name1[20]; //书名

char numb[30]; //书号

}datatype;

typedef struct node

{

datatype data;

struct node * next;

}listnode;

typedef listnode * linklist;

linklist head;

listnode * p;

//图书馆用户信息的建立

linklist Create(int a )

{

linklist head=(listnode *)malloc(sizeof(listnode));

listnode *p,*q;

q=head;

while(a--)

{

p=(listnode *)malloc(sizeof(listnode));

printf("姓名 借阅证号 书名 书号 ");

scanf("%s%s%s%s",p->data.name,p->data.num,p->data.name1,p->data.numb);

q->next=p;

q=p;

}

q->next=NULL;

return head;

}

//图书馆用户信息的添加

void Add(linklist head,int b)

{

listnode * m,* n,* p;

m=head;

n=m->next;

while(n->next!=NULL)

{

m=n;

n=n->next;

}

while(b--)

{

p=(listnode *)malloc(sizeof(listnode));

printf("姓名 借阅证号 书名 书号 ");

printf("********************** ");

scanf("%s%s%s%s",p->data.name,p->data.num,p->data.name1,p->data.numb);

n->next=p;

n=p;

}

n->next=NULL;

}

//按姓名查找用户信息

listnode * Find(linklist head)

{

listnode *p;

char name[10];

int i;

printf("********************** ");

printf("********************** ");

printf("姓名查找,按1表示查找:");

p=head->next;

scanf("%d",&i);

if(i==1)

{

printf("请输入要查询的姓名:");

scanf("%s",&name);

while(p&&strcmp(p->data.name,name)>0)

p=p->next;

if(p==NULL||strcmp(p->data.name,name)<0)

p=NULL;

}

return p;

}

//按书名查找信息

listnode * Find1(linklist head)

{

listnode *p;

char name1[20];

int i;

printf("********************** ");

printf("********************** ");

printf("书名查找,按1表示查找:");

p=head->next;

scanf("%d",&i);

if(i==1)

{

printf("请输入要查询的书名:");

scanf("%s",&name1);

while(p&&strcmp(p->data.name1,name1)>0)

p=p->next;

if(p==NULL||strcmp(p->data.name1,name1)<0)

p=NULL;

}

return p;

}

//按姓名信息的修改

void Alter(linklist head)

{

listnode * p;

p= Find(head);

if(p==NULL)

{

printf("用户信息不存在. ");

}

else

{

printf("姓名 借阅证号 书名 书号 ");

scanf("%s %s %s %s ",p->data.name,p->data.num,p->data.name1,p->data.numb);

printf("用户信息已经修改!");

}

}

//用户信息的删除

void Delete(linklist head)

{

int i;

listnode *p,*q;

p=Find(head);

if(p==NULL)

{

printf("信息不存在! ");

return;

}

else

{

printf("要删除的话就按1:");

scanf("%d",&i);

if(i==1)

{

q=head;

while(q!=NULL&&q->next!=p)

q=q->next;

q->next=p->next;

free(p);

printf("已删除信息! ");

}

}

}

//信息的输出

void List(linklist head)

{

listnode *p;

p=head;

printf("姓名 借阅证号 书名 书号 ");

printf("********************** ");

while(p->next!=NULL)

{

printf("%s %s %s %s ",p->next->data.name,p->next->data.num,p->next->data.name1,p->next->data.numb);

p=p->next;

}

}

int Menu()

{

int i;

printf(" ");

printf(" ");

printf(" 图书信息系统 ");

printf("******************************************************************************* ");

printf("******************************************************************************* ");

printf("** 1.用户信息的创建 ** ");

printf("** 2.用户信息的添加 ** ");

printf("** 3.用户姓名的查询 ** ");

printf("** 4.图书书名的查询 ** ");

printf("** 5.图书信息的修改 ** ");

printf("** 6.用户信息的删除 ** ");

printf("** 7.用户信息的输出 ** ");

printf("** 0.退出管理系统 ** ");

printf("******************************************************************************* ");

printf("******************************************************************************* ");

printf(" ");

printf(" 请 选 择 0-7:");

for(;;)

{

scanf("%d",&i);

printf(" ");

if(i<0||i>9)

printf(" 输出错误,重选0-7:");

else

break ;

}

return i;

}

//图书管理系统主函数部分

void main()

{

for(;;)

{

switch(Menu())

{

case 1:

printf("*********************************用户信息的建立******************************* ");

int i;

printf("输入你想输入的数目:");

scanf("%d",&i);

head=Create(i);

break;

case 2:

printf("********************************用户信息的添加******************************** ");

int a;

printf("输入你想添加的人数:");

scanf("%d",&a);

Add(head,a);

break;

case 3:

printf("********************************用户姓名的查询******************************* ");

p=Find(head);

if(p!=NULL)

{

printf("姓名 借阅证号 书名 书号 ");

printf("********************** ");

printf("%s %s %s %s ",p->data.name,p->data.num,p->data.name1,p->data.numb);

printf(" ");

printf("********************** ");

}

else

printf("该用户信息不存在!");

break;

case 4:

printf("********************************图书书名的查询******************************* ");

p=Find1(head);

if(p!=NULL)

{

printf("姓名 借阅证号 书名 书号 ");

printf("********************** ");

printf("%s %s %s %s ",p->data.name,p->data.num,p->data.name1,p->data.numb);

printf(" ");

printf("********************** ");

}

else

printf("该用户信息不存在!");

break;

case 5:

printf("********************************图书信息的修改******************************* ");

Alter(head);

break;

case 6:

printf("******************************** 用户信息的删除******************************* ");

Delete(head);

break;

case 7:

printf("*******************************用户信息的输出****************************** ");

List(head);

break;

case 0:

printf("***********************************退出************************************** ");

exit(0);

}

}

}

coco
* 回复内容中包含的链接未经审核,可能存在风险,暂不予完整展示!
看下这个,人家己经采纳了。

http://zhidao.b***.com/question/158813210.html
可可

别着急 我尝试一下

LocCloud

只能用C语言来做么,C做这个很麻烦的。。。

相关推荐

nextbook型号M890BAP平板电脑恢复出厂设置后,无线WLAN连接正常下,无法打开网页。是河原因?如何解决?

1、如果平板电脑连其他WiFi也上不了网,可能其存在软件或者硬件故障,可以先重置为出厂状态排除下,或者由售后服务中心专业人员对软、硬件进行全面检测;2、如果只是连某个WiFi上不了网,建议用如下方法排查:(1)平板电脑、猫、WiFi路由器运行出现软件错误,建议将平板电脑、猫、WiFi路由器断电重启试试;(2)减少平板电脑与WiFi路由器之间的距离和物理障碍物,确保良好的WiFi信号覆盖质量;(3)如果是PPPOE拨号上网,检查猫和WiFi路由器WAN口之间的网线是否出现松动、脱落、损坏等情况;(4)检查平板电脑、WiFi路由器周围是否有较强的无线电干扰源,影响到平板电脑与WiFi路由器之间的WiFi信号传输质量;(5)登录WiFi路由器web管理界面,检查连(蹭)WiFi的人是否太多或者在看在线视频、玩在线游戏、下载文件,严重消耗了网络带宽资源;(6)登录WiFi路由器web管理界面,检查WiFi路由器配置是否对平板电脑等做了上网限制;(7)登录WiFi路由器web管理界面,检查WiFi路由器配置是否正确;(8)建议咨询宽带运营商,检查网络带宽线路、猫、WiFi路由器是否出现硬件故障,或者网络带宽逾期未交费。
2023-06-28 16:43:191

nextbook10.1寸平板电脑怎么样

nextbook10.1寸平板电脑价格便宜,性价比高屏幕大,功能多,网速快外观漂亮,质量很好总体来说很好如果我的回答没能帮助您,请继续追问。你的采纳是我前进的动力。记得好评和采纳,答题不易,互相帮助。
2023-06-28 16:43:281

Nextbook平板电脑的登录密码忘了,怎么找回

让人家修吧
2023-06-28 16:43:383

刚买nextbook平板电脑开不了机啥回事哎

电池没电,建议连接数据线和充电器充电半小时左右后开机重试;软件冲突导致系统无法开机,建议长按电源键十秒左右强制开机;如果仍不能解决建议携带相关产品前往就近售后服务中心检测处理。英特尔最新推出了第六代酷睿产品,采用全新一代的架构,性能提示、功能降低、续航更加长久、无论办公学习、畅玩游戏或者观看超高清音箱播放,均得心应手,您也可以试试。
2023-06-28 16:43:471

受骗的兄弟姐妹联合起来,睁大眼睛瞧瞧清华同方官网声明,不要购买清华同方平板电脑nextbook,都是骗人的

就是买了三天就开不机了 ,太郁闷了
2023-06-28 16:43:576

易方nextbook平板电脑,型号是next7P,电脑出了点小毛病

这种是机器硬件故障,只能返厂维修。如果只是只在开机画面,进不了菜单这种是属于系统软件问题的,你可以到官方网站下载固件自己升级就好了,希望能给到你一点帮助
2023-06-28 16:44:131

nextbook平板电脑恢复出厂设置之后怎么设置成中文字幕

nextbook平板电脑恢复出厂设置后成英文怎么变回中文呢
2023-06-28 16:44:222

nextbook如何刷机?

手机进入应用程序--开发--打开USB调试。 2.下载线刷rom包。 3.下载刷机工具包odin后解压。 4.关机,然后同时按住下音量下键 + HOME键 + 电源键,等待3秒,出现英文界面。 按音量上键,进入界面为绿色机器人,此为刷机模式。 5.打开odin刷机工具,识别成功在...
2023-06-28 16:44:491

nextbook的意思?

有着单词吗???
2023-06-28 16:44:575

清华同方nextbook怎么样啊

蒙人的,特别不专业。千万别上当!送货源是个北京来广营的一个骗子公司。010-5209 7979。包装盒上倒是印着“清华同方”,但这个随便找人都能印刷!包装摸上去还掉渣儿。电话询问:“为什么产品上没有清华同方的标?只写着nextbook”。回答说,“nextbook就是清华同方!”简直弱智!都知道nextbook是美国的东东。客服(号称技术代表)说,“你不要,让快递送下一家!”太好了,我不要了……省我600多银子。
2023-06-28 16:45:112

易方nextbook mini8刷机包在哪下载?

官网,或者度娘
2023-06-28 16:45:302

c语言课程设计小程序怎样串联到一起

问题不够清楚。
2023-06-28 16:45:404

中秋节送平板电脑好吗

最好电脑月饼一起送!
2023-06-28 16:45:577

cout

图书借阅管理系统源程序(C语言)/*1. 图书借阅管理系统(限1 人完成) 主要分为两大功能:1) 图书管理(增加图书、查询图书、删除图书、图书借阅、还书);会员管理(增加会员、查询会员、删除会员、借书信息);*/#include<stdlib.h>#include<stdio.h>#include<iostream.h>#define NULL 0typedef struct BookInfo{ /////图书结构 int b_Code; ////图书编号 char b_Name[20]; /////名称 int b_Total; /////总数 int b_Out; ///借出数 BookInfo* nextbook; //////下一类图书}BookInfo;typedef struct MemberInfo{ ///会员结构 long m_Code; /////会员编号 char m_Name[20]; ////会员名字 int l_Codes[6]; /////以借书的编号,最多5 MemberInfo* nextmember; ////下一会员}MemberInfo;typedef struct System{ ///管理系统结构 BookInfo* BI; MemberInfo* MI; int BookTotal; ////图书类库存量 int MemberTota; /////会员数量}System;System* InitSystem();/////void AddBook(System*);////增加图书BookInfo* SearchBook(System*,int);////查询图书信息void DelBook(System*);/////删除图书void BrrowBook(System*);///////借书处理void TurnBackBook(System*);////还书处理void AddMember(System*);/////添加会员void DelMember(System*);////删除会员MemberInfo* SearchMember(System*,int);/////查询会员信息void StoreData(System*);void LoadData(System*);void ExitSystem();void main(){ System* S=InitSystem(); int sel; do{ cout<<" 图书管理系统"<<endl; cout<<" ******************************"<<endl; cout<<" ******************************"<<endl; cout<<" 1.增加图书. 2.查询图书. 3.删除图书. 4.借书处理. 5.还书处理. 6.添加会员. 7.删除会员. 8.查询会员. 9.载入数据. 10.保存数据. 11.退出程序. "; cout<<" ******************************"<<endl; cout<<" ******************************"<<endl; cout<<"请选择:"; do{ cin>>sel; if(sel>=1&&sel<=11)break; cout<<"选择错误! 重新输入:"<<endl; }while(1); switch(sel){ case 1:AddBook(S);break; case 2:SearchBook(S,-1);break; case 3:DelBook(S);break; case 4:BrrowBook(S);;break; case 5:TurnBackBook(S);break; case 6:AddMember(S);break; case 7:DelMember(S);break; case 8:SearchMember(S,-1);break; case 9:LoadData(S);break; case 10:StoreData(S);break; default:ExitSystem(); } }while(1);}System* InitSystem(){ System* S=(System*)malloc(sizeof(System)); S->BI=(BookInfo*)malloc(sizeof(BookInfo)); S->BookTotal=0; S->BI->nextbook=NULL; S->MI=(MemberInfo*)malloc(sizeof(MemberInfo)); S->MemberTota=0; S->MI->nextmember=NULL; return S;}void AddBook(System* S){ int Tempcode; char sel; BookInfo* p=S->BI; BookInfo* t; BookInfo* m; int num; do{ cout<<"输入图书编号:"; cin>>Tempcode; if(m=SearchBook(S,Tempcode)){ cout<<"这类书以有库存. 输入图书的入库量:"<<endl; cin>>num; m->b_Total+=num; } else{ t=(BookInfo*)malloc(sizeof(BookInfo)); t->b_Code=Tempcode; cout<<"输入图书的名称:"; cin>>t->b_Name; cout<<"输入图书的入库量:"; cin>>t->b_Total; t->b_Out=0; t->nextbook=p->nextbook; p->nextbook=t; S->BookTotal++; } cout<<"添加完毕!"<<endl; cout<<"还要添加吗?(Y/N)"; cin>>sel; if(sel=="n"||sel=="N"){ cout<<"结束添加"<<endl; return; } }while(1);}BookInfo* SearchBook(System* S,int code){ BookInfo* bi=S->BI->nextbook; int bookcode; if(code==-1){ cout<<"请输入要查询的图书编号:"; cin>>bookcode; } else bookcode=code; while(bi&&bi->b_Code!=bookcode)bi=bi->nextbook; if(code==-1){ if(!bi)cout<<"没找到你所要的图书."<<endl; else { cout<<"图书编号为:"<<bi->b_Code<<endl; cout<<"图书名称为:"<<bi->b_Name<<endl; cout<<"图书库存量为:"<<bi->b_Total<<endl; cout<<"图书借出量为:"<<bi->b_Out<<endl; } } return bi;}void DelBook(System* S){ BookInfo* bi; BookInfo* pl=S->BI; MemberInfo* memi; char sel; int tempcode; int i; do{ pl=S->BI; bi=pl->nextbook; memi=S->MI->nextmember; cout<<"请输入要删除的图书的编号:"; cin>>tempcode; while(bi){ if(bi->b_Code==tempcode)break; pl=bi; bi=bi->nextbook; } if(bi==0)cout<<"没有找到要删除的图书"<<endl; else{ pl->nextbook=bi->nextbook; S->BookTotal--; while(memi){ for(i=1;i<=memi->l_Codes[0];i++){ if(memi->l_Codes[i]==tempcode)break; } if(i<=memi->l_Codes[0]){ for(;i<memi->l_Codes[0];i++)memi->l_Codes[i]=memi->l_Codes[i+1]; memi->l_Codes[0]--; } memi=memi->nextmember; } free(bi); } cout<<"还有图书要删除吗?(Y/N)"; cin>>sel; if(sel=="N"||sel=="n"){ cout<<"删除图书结束"<<endl; return; } }while(1);}void BrrowBook(System* S){ BookInfo* bi=S->BI->nextbook; BookInfo* p; char sel; int memcode; MemberInfo* mp; int tempcode; do{ cout<<"输入要借出的书号:"; cin>>tempcode; p=SearchBook(S,tempcode); if(!p){ cout<<"没有找到要借出的图书."<<endl; } else{ cout<<"此书的现存量为"<<(p->b_Total-p->b_Out)<<endl; if(!(p->b_Total-p->b_Out))cout<<"没有足够的书了,外借失败."<<endl; else{ cout<<"请输入会员编号:"; cin>>memcode; mp=SearchMember(S,memcode); if(!mp)cout<<"会员编号输入错误,外借失败"<<endl; else{ if(mp->l_Codes[0]==5)cout<<"借书量不能超过5本"; else{ p->b_Out++; mp->l_Codes[++mp->l_Codes[0>=tempcode; cout<<"外借成功."<<endl; } } } } cout<<" 还有图书要借出吗?(Y/N)"; cin>>sel; if(sel=="N"||sel=="n"){ cout<<"外借操作结束."<<endl; return; } }while(1);}void TurnBackBook(System* S){ BookInfo* bi=S->BI->nextbook; BookInfo* p; MemberInfo* mp; int membercode; int tempcode; int i; char sel; do{ cout<<"输入归还书号:"; cin>>tempcode; p=SearchBook(S,tempcode); if(!p){ cout<<"书号输入错误."<<endl; } else{ cout<<"此书的现存量为"<<(p->b_Total-p->b_Out)<<endl; cout<<"请输入会员编号:"; cin>>membercode; if(!(mp=SearchMember(S,membercode)))cout<<"会员编号输入错误,归还失败"<<endl; else{ p->b_Out--; for(i=1;i<=mp->l_Codes[0];i++){ if(mp->l_Codes[i]==tempcode)break; } while(i<mp->l_Codes[0]){ mp->l_Codes[i]=mp->l_Codes[i+1]; i++; } mp->l_Codes[0]--; cout<<"归还成功."<<endl; } } cout<<"还有要归还的图书吗?(Y/N)"; cin>>sel; if(sel=="N"||sel=="n"){ cout<<"归还结束."<<endl; return; } }while(1);}void AddMember(System* S){ int Tempcode; char sel; MemberInfo* p=S->MI; MemberInfo* t; do{ cout<<"输入会员编号:"; cin>>Tempcode; t=(MemberInfo*)malloc(sizeof(MemberInfo)); t->m_Code=Tempcode; cout<<"输入会员姓名:"; cin>>t->m_Name; t->l_Codes[0]=0; t->nextmember=p->nextmember; p->nextmember=t; S->MemberTota++; cout<<"添加完毕!"<<endl; cout<<"还要添加吗?(Y/N)"; cin>>sel; if(sel=="n"||sel=="N"){ cout<<"结束添加"<<endl; return; } }while(1);}MemberInfo* SearchMember(System* S,int code){ MemberInfo* bi=S->MI->nextmember; int membercode; int i; if(code==-1){ cout<<"请输入要查询的会员编号:"; cin>>membercode; } else membercode=code; while(bi&&bi->m_Code!=membercode)bi=bi->nextmember; if(code==-1){ if(!bi)cout<<"没找到指定会员."<<endl; else { cout<<"会员编号为:"<<bi->m_Code<<endl; cout<<"名称为:"<<bi->m_Name<<endl; cout<<"已借的图书有:"<<bi->l_Codes[0]<<"本."<<endl; for(i=1;i<=bi->l_Codes[0];i++) cout<<bi->l_Codes[i]<<" "; cout<<endl; } } return bi;}void DelMember(System* S){ MemberInfo* bi; MemberInfo* pl; BookInfo* book; char sel; int i; int tempcode; do{ bi=S->MI->nextmember; pl=S->MI; cout<<"请输入要删除的会员的编号:"; cin>>tempcode; while(bi){ if(bi->m_Code==tempcode)break; pl=bi; bi=bi->nextmember; } if(!bi)cout<<"没有找到要删除的会员编号."; else{ pl->nextmember=bi->nextmember; S->MemberTota--; for(i=1;i<=bi->l_Codes[0];i++){ if(!(book=SearchBook(S,bi->l_Codes[i]))){ cout<<"删除会员出错!"<<endl; } else{ book->b_Out--; book->b_Total--; } } free(bi); } cout<<"还有会员要删除吗?(Y/N)"; cin>>sel; if(sel=="N"||sel=="n"){ cout<<"删除会员结束"<<endl; return; } }while(1);}void StoreData(System* S){ FILE* fp; BookInfo* bi=S->BI->nextbook; if(!(fp=fopen("BookSys","wb"))){ cout<<"打开文件BookSys失败!"<<endl; exit(0); } fwrite(&(S->BookTotal),sizeof(int),1,fp); while(bi){ fwrite(bi,sizeof(BookInfo),1,fp); bi=bi->nextbook; } MemberInfo* mi=S->MI->nextmember; fwrite(&(S->MemberTota),sizeof(int),1,fp); while(mi){ fwrite(mi,sizeof(MemberInfo),1,fp); mi=mi->nextmember; } fclose(fp);}void LoadData(System* S){ FILE* fp; if(!(fp=fopen("BookSys","rb"))){ cout<<"打开文件BookSys失败"<<endl; exit(0); } BookInfo* bi=S->BI; BookInfo* tempbi; fread(&(S->BookTotal),sizeof(int),1,fp); for(int i=1;i<=S->BookTotal;i++){ tempbi=(BookInfo*)malloc(sizeof(BookInfo)); fread(tempbi,sizeof(BookInfo),1,fp); bi->nextbook=tempbi; bi=tempbi; } bi->nextbook=NULL; MemberInfo* mi=S->MI; MemberInfo* tempmi; fread(&(S->MemberTota),sizeof(int),1,fp); for(i=1;i<=S->MemberTota;i++){ tempmi=(MemberInfo*)malloc(sizeof(MemberInfo)); fread(tempmi,sizeof(MemberInfo),1,fp); mi->nextmember=tempmi; mi=tempmi; } mi->nextmember=NULL; fclose(fp);}void ExitSystem(){ char select; cout<<"警告: 程序结束后未存储的数据将消失."<<endl; cout<<"确定要退出吗?(Y/N)"; cin>>select; if(select=="y"||select=="Y")exit(0); if(select=="n"||select=="N")return;}
2023-06-28 16:46:113

初一英语翻译

1.Good morning.2.That is a map.3.Is this your student ID?4.Please dail 338-4021 to find Mike.5.My parents are at home.6.his friends7.Lilei"s keys are on the dresser.8.Is her notebook on the shelf?9.We watch TV every day.10.They have many sports clubs.11.That sounds interesting.12.Do they have exercise at school?13.have many sports collections14.Can you answer this questiongs?15.The others are also in the room.16.Do you have the student list of your class?17.Conversation one is very interesting.18.Please take these video tapes to your room.19.We need health food.20.She likes bananas,but I do not.21.I like red,white and black sweaters.22.Our English speech contest is on the Octorber 20th.23.I think the hisory is boring.24.Which actor do you like best?25.Can your cousin speak a little Chinese?
2023-06-28 16:46:216

what 可不可以引导定语从句~!@~@~!详细点

不可以。定语从句在句中做定语,修饰一个名词或代词,被修饰的名词,词组或代词即先行词。定语从句通常出现在先行词之后,由关系词(关系代词或关系副词)引出。 关系代词有:who, whom, whose, that, which等。 关系副词有:when, where, why等。而what是一个名词性代词,在句子中作主语宾语。当然不能引导了。 希望能帮到你,祝更上一层楼O(∩_∩)O有不明白的请继续追问(*^__^*)
2023-06-28 16:46:372

what 可不可以引导定语从句~

不可以 定语从句 一、定语从句(一): 1.定语从句的概念: 在复合句中,修饰某一名词或代词的从句叫定语从句. 2.先行词: 被定语从句修饰的名词或代词叫先行词. 3.关系词: 引导定语从句的连词叫关系词.如that、which、who、whom、whose、where、when等. 4.由that、which、who、whom、whose引导的定语从句. 关系词 指代 在定语从句中的作用 that 既指人也指物 作主语、宾语 which 指物 作主语、宾语 who 指人 作主语 whom 指人 作宾语 whose 既指人也指物 作定语 二、定语从句(二) 1.先行词是物时,一般情况既可用that也可用which.但下列情况下,只能用that不用which. 1).当先行词为指物的不定代词,如all、everything、something、anything、nothing、none、the one等时,只能用that. There is nothing ______ I can do for you . 2).当先行词被the only、the very 、the last、all、no、little等词修饰时,只能用that. This is the very book ______ I"m looking for . 3).先行词被序数词修饰时,只能用that . This is the first nextbook ______ I studied in the middle school . 4).先行词为最高级或被最高级修饰时,只能用that. This is the most beautiful mountain ______ I have ever seen .= I have _____ seen _____ a beautiful mountian . 5).先行词既有人也有物时,只能that . He told us many interesting things and persons _______ we had . 2.先行词是物时,一般情况既可用that也可用which.但下列情况下,只能用which不用that. 1).关系代词前有介词时,关系词只能用which . This is the building in ______ he lives . 2).先行词本身是that时,关系词只能用which . The clock is that _____ tells the time . 3).引导非限定性的定语从句(先行词是物且先行词与关系词用逗号隔开),关系词用which. His book ,______ was lost last week ,has been found now. 3.先行词是人时,一般情况下既可用who 也可用that .但以下情况下,只能用who. 1).当先行词为those、one、ones、anyone且作主语时,一般用who . Those ______ are singing are all my classmates . 2).在there be 句型中,先行词指人时,只能用who.指物时用that. There is a girl ______ expects to see you . 3).当先行词是I、you、he、they等时,只能用who . He ______ plays with fire gets burned . 三、定语从句(三). 由关系副词when、where、why引导的定语从句. where = in / at +which when = in / on / at +which why = for + which 1.由where引导的定语从句. 1).先行词是表示地点的名词 2).在定语从句中作地点状语 Is this the house ______ you lived = Is this the house _____ _____ you lived = Is this the house _____ you lived in 2.由when引导的定语从句. 1).先行词是表示时间的名词 2).在定语从句中作时间状语 I will never forget the days ______ I met him .= I will never forget the days ____ ____ I met him. 注:先行词是the last time 时,when 可省略. When was the last time you saw the parrot 3.由why引导的定语从句. 先行词为reason 时,一般用why .why在句中作原因状语. We don"t know the reason ______ they didn"t come . 四、注意事项: 1.关系词在定语从句中作宾语时,常可省略. The story _____ he told was very popular . A.who B.whom C.whose D./ 2.that、who、which在定语从句中作主语时,定语从句的谓语动词应与先行词保持一致. I loves singers who _______(write) their own songs . She is one of the girls who ______(study) hard . 3.在定语从句中不能出现代替先行词的人称代词. Will you please show me the book ______ yesterday? A.which you bought B.that you bought it C.you bought D.you bought it 4.定语从句中whose 的确定: 无论先行词是人或物,在定语从句中做定语用whose. 判断:看定语从句的主语前有无限定词(my、your、Jim"s等),若没有,则用whose . The girl _____ parents work in Beijing is Kate . A.who B.whose C.which D.that I know the boy .His handwriting is very good .= I know the boy ____ handwriting is very good. 五、定语从句的简化 把定语从句简化为形容词短语、过去分词短语、介词短语、现在分词短语. 1.She reveived a box which was full of presents . She reveived a box _____ _____ presents . 2.He likes reading books that was written by Luxun. He likes reading booking _____ ____ Luxun . 3.I like Chinese tea which has nothing in it .
2023-06-28 16:46:431

8寸平板电脑哪个牌子好热门8寸平板电脑推荐

如今市场上平板电脑的品牌有很多,尺寸也有5寸、7寸、8寸、9寸、10寸等,要想购买一台性价比高的8寸平板电脑,需要熟悉众多平板电脑品牌特性,接下来为你带来超值的8寸平板电脑推荐。其实8寸平板电脑并不是最主流的平板电脑尺寸,但是8寸平板电脑在双手操作的状态下却有着其他尺寸所无法比拟的优势。那就来看看8寸平板电脑推荐都有哪些,说不定对你的选购有所帮助哦!8寸平板电脑推荐一:酷比魔方U16GT参考报价:¥399酷比魔方U16GT平板电脑的采用ARMCortexA8内核的主频高达1.2GHz,屏幕采用了8英寸800×600分辨率的电容式触摸屏,带来更好的视觉感受;搭载最新的安卓4.0.3操作系统,运行速度、智能管理、UI操作界面等方面有不错表现,新增了图标拖动、文件夹的创建和重命名以及类似iOS系统的人脸识别和刷脸解锁等人性化的功能。8寸平板电脑推荐二:爱魅a85(时尚版)参考报价:¥438爱魅a85(时尚版)采用安卓4.0操作系统,屏幕采用了8英寸800×600分辨率的电容式触摸屏,操作十分流畅。支持1080P高清视频播放,内置扬声器,画质清晰流畅,满足你高品质视听需求。8寸平板电脑推荐三:昂达Vi30W时尚版参考报价:¥449昂达Vi30W时尚版采用全新时尚金属风格设计,质感的不锈钢拉丝工艺用于面板,坚固而精致,搭配机身的黑色钢琴烤漆设计,个性十足。其配置一块8英寸800*600分辨率电容屏,并支持五点电容触摸操作,针对Android平台的软件、游戏的特性,为用户大量滑动、触摸、多点点击等操作提供了更出色体验。8寸平板电脑推荐四:台电P86参考报价:¥499台电P86可视面积是普通7寸16:10平板电脑的1.5倍,圆润的机身设计符合人体工程学设计,单手握机大小和重量正合适,让你随时随地畅享舒适的大屏体验。A13处理器独具全新ManyCore众核技术让平板多任务处理更稳定、软件应用速度更快、玩游戏更为顺畅。运行任务时,比其他同类主控省电最高达49%!8寸平板电脑推荐五:易方NextbookP8豪华版参考报价:¥499易方NextBookP8豪华版采用8英寸多点电容屏,分辨率为1024*768像素,配备瑞芯微RK2918处理器,主频1GHz,512MBDDR3内存,8GB闪存,搭载Android2.3系统。支持WiFi、HDMI。前置一枚200万像素摄像头,电池容量约5000mAh。
2023-06-28 16:46:511

易方nextbook-11.6寸平板维修

翻相册苟富贵唱唱歌哥哥
2023-06-28 16:47:002

NEXTBOOK 配置

一般 ,不过具体我不知道
2023-06-28 16:47:193

求推荐一个能像nextbook那样的平板或者mini笔记本

建议购买搭载了第六代智能英特尔酷睿处理器的产品,打破悖论,小身材大能量,澎湃性能毋庸置疑,改进的睿频加速技术,睿频幅度突破记录,可瞬间爆发计算性能的同时保持一流的系统功耗优化和散热管理,真正静若处子,动若脱兔。整体CPU速度提升高达50%,3D图形性能提升47%, 多媒体影音处理速度提升高达82%,锋锐轻盈,重磅性能,集大成于一身,比如:Acer 暗影骑士2 VN7-592G Core i7-6700HQ Windows10Dell Ins15MR-7748S I7 SKL-U 15" Window 10HP Pavilion Gamin WASD i5/i7 Skylake 15.6" windows10
2023-06-28 16:47:262

那些电脑可以玩2012伦敦奥运会游戏

nextbookE8可以玩2012伦敦奥运会游戏。8寸最强双核平板——nextbookE8显然可以,NextbookE8玩起《2012伦敦奥运会》游戏时,可以说是得心应手。
2023-06-28 16:47:331

易方nextbook p8se怎么root?安卓4.0的系统。用哪一款ROOT软件最简单、快捷?

你的平板不会是翻新的吧?不然怎么会显示不一样呢。且不管别的,root不成功,说明这个软件不行。不妨去多下载几款,很多软件都是只适用于一部分机型,再选用几款其他的root试试。也行下一个就成功了。祝成功。
2023-06-28 16:47:483

易方 Nextbook P7se 8G 7寸平板电脑 怎样下载

易方Nextbook P7se 8G平板电脑怎样下载。。。。。你是想下载软件、游戏、电影还是图片?如果想下载软件、游戏可以去午午平板网,想下载电影的话可以在百度视频频道下载,想下载图片的话可以在百度图片频道下载
2023-06-28 16:48:142

易方nextbook m89可以玩火影忍者ol(腾讯网页游戏)吗?

平板嘛?
2023-06-28 16:48:211

小号屏幕怎么选屏幕驱动

小号屏幕选驱动板,优先看支持的分辨率、刷新率、接口pin数和接口定义和屏是否匹配。高分辨率是品牌显示器的一大卖点,但是同样对应的价格也十分美丽。
2023-06-28 16:48:282

怎样把我的数据写入一个文件中并且读取

使用fprintf()函数。
2023-06-28 16:48:351

C语言 帮忙设计个小程序 我有多少分给你多少分!

#include<stdlib.h>#include<stdio.h>#include<iostream.h>typedef struct BookInfo /////图书结构{ int b_Code; ////图书编号 char b_Name[20]; /////名称 int b_Total; /////总数 int b_Out; ///借出数 BookInfo* nextbook; //////下一类图书}BookInfo;typedef struct MemberInfo ///会员结构{ long m_Code; /////会员编号 char m_Name[20]; ////会员名字 int l_Codes[6]; /////以借书的编号,最多5 MemberInfo* nextmember; ////下一会员}MemberInfo;typedef struct System ///管理系统结构{ BookInfo* BI; MemberInfo* MI; int BookTotal; ////图书类库存量 int MemberTota; /////会员数量}System;System* InitSystem();/////void AddBook(System*);////增加图书BookInfo* SearchBook(System*,int);////查询图书信息void DelBook(System*);/////删除图书void BrrowBook(System*);///////借书处理void TurnBackBook(System*);////还书处理void AddMember(System*);/////添加会员void DelMember(System*);////删除会员MemberInfo* SearchMember(System*,int);/////查询会员信息void StoreData(System*);void LoadData(System*);void ExitSystem();void main(){ System* S=InitSystem(); int sel; do { cout<<" 图书管理系统"<<endl; cout<<" ******************************"<<endl; cout<<" ******************************"<<endl; cout<<" 1.增加图书. 2.查询图书. 3.删除图书. 4.借书处理. 5.还书处理. 6.添加会员. 7.删除会员. 8.查询会员. 9.载入数据. 10.保存数据. 11.退出程序. "; cout<<" ******************************"<<endl; cout<<" ******************************"<<endl; cout<<"请选择:"; do { cin>>sel; if (sel>=1&&sel<=11)break; cout<<"选择错误! 重新输入:"<<endl; } while (1); switch (sel) { case 1: AddBook(S); break; case 2: SearchBook(S,-1); break; case 3: DelBook(S); break; case 4: BrrowBook(S);; break; case 5: TurnBackBook(S); break; case 6: AddMember(S); break; case 7: DelMember(S); break; case 8: SearchMember(S,-1); break; case 9: LoadData(S); break; case 10: StoreData(S); break; default: ExitSystem(); } } while (1);}System* InitSystem(){ System* S=(System*)malloc(sizeof(System)); S->BI=(BookInfo*)malloc(sizeof(BookInfo)); S->BookTotal=0; S->BI->nextbook=NULL; S->MI=(MemberInfo*)malloc(sizeof(MemberInfo)); S->MemberTota=0; S->MI->nextmember=NULL; return S;}void AddBook(System* S){ int Tempcode; char sel; BookInfo* p=S->BI; BookInfo* t; BookInfo* m; int num; do { cout<<"输入图书编号:"; cin>>Tempcode; if (m=SearchBook(S,Tempcode)) { cout<<"这类书以有库存. 输入图书的入库量:"<<endl; cin>>num; m->b_Total+=num; } else { t=(BookInfo*)malloc(sizeof(BookInfo)); t->b_Code=Tempcode; cout<<"输入图书的名称:"; cin>>t->b_Name; cout<<"输入图书的入库量:"; cin>>t->b_Total; t->b_Out=0; t->nextbook=p->nextbook; p->nextbook=t; S->BookTotal++; } cout<<"添加完毕!"<<endl; cout<<"还要添加吗?(Y/N)"; cin>>sel; if (sel=="n"||sel=="N") { cout<<"结束添加"<<endl; return; } } while (1);}BookInfo* SearchBook(System* S,int code){ BookInfo* bi=S->BI->nextbook; int bookcode; if (code==-1) { cout<<"请输入要查询的图书编号:"; cin>>bookcode; } else bookcode=code; while (bi&&bi->b_Code!=bookcode)bi=bi->nextbook; if (code==-1) { if (!bi)cout<<"没找到你所要的图书."<<endl; else { cout<<"图书编号为:"<<bi->b_Code<<endl; cout<<"图书名称为:"<<bi->b_Name<<endl; cout<<"图书库存量为:"<<bi->b_Total<<endl; cout<<"图书借出量为:"<<bi->b_Out<<endl; } } return bi;}void DelBook(System* S){ BookInfo* bi; BookInfo* pl=S->BI; MemberInfo* memi; char sel; int tempcode; int i; do { pl=S->BI; bi=pl->nextbook; memi=S->MI->nextmember; cout<<"请输入要删除的图书的编号:"; cin>>tempcode; while (bi) { if (bi->b_Code==tempcode)break; pl=bi; bi=bi->nextbook; } if (bi==0)cout<<"没有找到要删除的图书"<<endl; else { pl->nextbook=bi->nextbook; S->BookTotal--; while (memi) { for (i=1;i<=memi->l_Codes[0];i++) { if (memi->l_Codes[i]==tempcode)break; } if (i<=memi->l_Codes[0]) { for (;i<memi->l_Codes[0];i++)memi->l_Codes[i]=memi->l_Codes[i+1]; memi->l_Codes[0]--; } memi=memi->nextmember; } free(bi); } cout<<"还有图书要删除吗?(Y/N)"; cin>>sel; if (sel=="N"||sel=="n") { cout<<"删除图书结束"<<endl; return; } } while (1);}void BrrowBook(System* S){ BookInfo* bi=S->BI->nextbook; BookInfo* p; char sel; int memcode; MemberInfo* mp; int tempcode; do { cout<<"输入要借出的书号:"; cin>>tempcode; p=SearchBook(S,tempcode); if (!p) { cout<<"没有找到要借出的图书."<<endl; } else { cout<<"此书的现存量为"<<(p->b_Total-p->b_Out)<<endl; if (!(p->b_Total-p->b_Out))cout<<"没有足够的书了,外借失败."<<endl; else { cout<<"请输入会员编号:"; cin>>memcode; mp=SearchMember(S,memcode); if (!mp)cout<<"会员编号输入错误,外借失败"<<endl; else { if (mp->l_Codes[0]==5)cout<<"借书量不能超过5本"; else { p->b_Out++; mp->l_Codes[++mp->l_Codes[0]]>=tempcode; cout<<"外借成功."<<endl; } } } } cout<<" 还有图书要借出吗?(Y/N)"; cin>>sel; if (sel=="N"||sel=="n") { cout<<"外借操作结束."<<endl; return; } } while (1);}void TurnBackBook(System* S){ BookInfo* bi=S->BI->nextbook; BookInfo* p; MemberInfo* mp; int membercode; int tempcode; int i; char sel; do { cout<<"输入归还书号:"; cin>>tempcode; p=SearchBook(S,tempcode); if (!p) { cout<<"书号输入错误."<<endl; } else { cout<<"此书的现存量为"<<(p->b_Total-p->b_Out)<<endl; cout<<"请输入会员编号:"; cin>>membercode; if (!(mp=SearchMember(S,membercode)))cout<<"会员编号输入错误,归还失败"<<endl; else { p->b_Out--; for (i=1;i<=mp->l_Codes[0];i++) { if (mp->l_Codes[i]==tempcode)break; } while (i<mp->l_Codes[0]) { mp->l_Codes[i]=mp->l_Codes[i+1]; i++; } mp->l_Codes[0]--; cout<<"归还成功."<<endl; } } cout<<"还有要归还的图书吗?(Y/N)"; cin>>sel; if (sel=="N"||sel=="n") { cout<<"归还结束."<<endl; return; } } while (1);}void AddMember(System* S){ int Tempcode; char sel; MemberInfo* p=S->MI; MemberInfo* t; do { cout<<"输入会员编号:"; cin>>Tempcode; t=(MemberInfo*)malloc(sizeof(MemberInfo)); t->m_Code=Tempcode; cout<<"输入会员姓名:"; cin>>t->m_Name; t->l_Codes[0]=0; t->nextmember=p->nextmember; p->nextmember=t; S->MemberTota++; cout<<"添加完毕!"<<endl; cout<<"还要添加吗?(Y/N)"; cin>>sel; if (sel=="n"||sel=="N") { cout<<"结束添加"<<endl; return; } } while (1);}MemberInfo* SearchMember(System* S,int code){ MemberInfo* bi=S->MI->nextmember; int membercode; int i; if (code==-1) { cout<<"请输入要查询的会员编号:"; cin>>membercode; } else membercode=code; while (bi&&bi->m_Code!=membercode)bi=bi->nextmember; if (code==-1) { if (!bi)cout<<"没找到指定会员."<<endl; else { cout<<"会员编号为:"<<bi->m_Code<<endl; cout<<"名称为:"<<bi->m_Name<<endl; cout<<"已借的图书有:"<<bi->l_Codes[0]<<"本."<<endl; for (i=1;i<=bi->l_Codes[0];i++) cout<<bi->l_Codes[i]<<" "; cout<<endl; } } return bi;}void DelMember(System* S){ MemberInfo* bi; MemberInfo* pl; BookInfo* book; char sel; int i; int tempcode; do { bi=S->MI->nextmember; pl=S->MI; cout<<"请输入要删除的会员的编号:"; cin>>tempcode; while (bi) { if (bi->m_Code==tempcode)break; pl=bi; bi=bi->nextmember; } if (!bi)cout<<"没有找到要删除的会员编号."; else { pl->nextmember=bi->nextmember; S->MemberTota--; for (i=1;i<=bi->l_Codes[0];i++) { if (!(book=SearchBook(S,bi->l_Codes[i]))) { cout<<"删除会员出错!"<<endl; } else { book->b_Out--; book->b_Total--; } } free(bi); } cout<<"还有会员要删除吗?(Y/N)"; cin>>sel; if (sel=="N"||sel=="n") { cout<<"删除会员结束"<<endl; return; } } while (1);}void StoreData(System* S){ FILE* fp; BookInfo* bi=S->BI->nextbook; if (!(fp=fopen("BookSys","wb"))) { cout<<"打开文件BookSys失败!"<<endl; exit(0); } fwrite(&(S->BookTotal),sizeof(int),1,fp); while (bi) { fwrite(bi,sizeof(BookInfo),1,fp); bi=bi->nextbook; } MemberInfo* mi=S->MI->nextmember; fwrite(&(S->MemberTota),sizeof(int),1,fp); while (mi) { fwrite(mi,sizeof(MemberInfo),1,fp); mi=mi->nextmember; } fclose(fp);}void LoadData(System* S){ FILE* fp; if (!(fp=fopen("BookSys","rb"))) { cout<<"打开文件BookSys失败"<<endl; exit(0); } BookInfo* bi=S->BI; BookInfo* tempbi; fread(&(S->BookTotal),sizeof(int),1,fp); for (int i=1;i<=S->BookTotal;i++) { tempbi=(BookInfo*)malloc(sizeof(BookInfo));
2023-06-28 16:48:561

平板电脑:易方P7SE双核与单核怎么甄别?

设置里面可以看到他的核心数!
2023-06-28 16:49:042

讲解定语从句

定语即形容词
2023-06-28 16:49:132

关于未来的梦想的英语作文

以下3篇,您选一篇,希望对您有帮助:【梦想和未来】  这是一个老话题,中考常考,难度较小。  1.我的梦想是当一名医生(mydreamisdoctor)  iamanordinaryperson,ihaveanordinarydream:tobeadoctor.becausedoctormaylettheseexperiencepersonallythehumanwhichtheindispositionsufferstogetridofthepain.mayletthehumanchangethehealth.atthesametime,ibelievedthat,willhelpothers,ownalsotobeabletoobtainjoyfully.therefore,ihopedfutureimightbeadoctor.  2.以后十年内我的生活(mylifeintenyears)  intenyears,ithinki"llbeareporter.iwiilliveinanapartementwithmysister.becauseidon"tlikelivingalone.andicanplaywithherinthaparement.sointenyears,iwillbaagoodreporter.iwillmeetalotofinterestingandfaouspeopleandiwillgotoanotherplacesonbusiness.intenyears,iwillhavemanydifferentpets.maybeiwillkeepapetturtle.ithinkiwillgoshoppingwithmysisteraslongasihavetime.andiwillgotolondononmyvacation.  so,mylifeintenyearswillbebetterandbetter!  3.新学期的打算(theplanforthenewterm)  anothernewtermcomesagain,soishouldhaveastudyplantopromotmyself.  firstly,idescidetofinishmyhomeworkmorecarefullythanbefore.andpaymoreattentiontotheknowledgewhichididn"tknowitclearly.  secondly,iwilldoalotofreadingtowidentherangeofmyknowledge,andtrytocombinethoerytopractice.  finally,iwilllearntoadjusttobemorepositiveandmorehelpful.  that"swhatiplanttodoinanewterm.
2023-06-28 16:49:231

易方nextbook p8这个平板电脑怎么样

平板的话,我建议你考虑以下几点.一,系统.(当然要是支持WIN8,那是最好.IOS的系统肯定支望不上了.不行就要安卓3.0以上吧)二,CPU.这个是心脏,当然是越高越好.三.内存.越大越好.四,分辨率.这个还是个重点.一定要达到.1024*600以上.不然你浏览网页的时候就会发现很蛋疼!五,硬盘容量了,当然是越大越好.六,外观.七寸以下吧.9-10寸最好.太小了不如弄个大屏手机玩玩.
2023-06-28 16:49:431

易如 nextbook 用什么软件连接电脑

kis
2023-06-28 16:49:501

易方nextbook平板电脑可以用诺基亚手机充电器充电么

电压要匹配,电流要小于等于原充电
2023-06-28 16:49:571

易方nextbook8 mini刷机包下载

1,建议首先官方,没有合适的就选下面的吧2、ROM之家或ROM基地:支持刷机精灵,刷机大师,甜椒刷机助手等工具.3,刷机软件里面搜索4、(次选)刷机之家:支持的机型比前者少
2023-06-28 16:50:061

what do chinese college graduates

What do Chinese college graduates have in common with ants? The recent 36 Ant Tribes about the life of some young people 37 flock (群集)to Beijing after 38 university, describes the graduates as ants, smart but 39 as individuals, living together in communities.The book, which 40 two years of interviews with about 600 low-income college graduates in Beijing, 41 in mid-September, about a month ahead of an announcement by the Ministry of Human Resources and Social Security that 74% of the 6.11 million new graduates from universities and colleges had been 42 by Sept.1.The book"s chief editor, Lian Sir, says that the piece of statistic says 43 about the real situation for many of these graduates. “I am always 44 how many of these employed college graduates are leading a happy life,” Lian said. “I hope this book could offer a window on these graduates, whose stories are 45 known.”The setting of the book is several so-called “settlement villages for college students” in the outskirts (市郊) of Beijing, where 46 college graduates 47 . Most of these graduates work for 48 or medium-sized(中型的) businesses, 49 less than 2,000 Yuan a month. They live together because it"s 50 : The rent in these communities is only around 350 Yuan a month. Many of them travel several hours a day for short-term jobs or job interviews.Tangjialing, a small 51 20 kilometers from Tian"anmen Square, has around 3,000 52 villagers, but has become a 53 for more than 50,000 migrants (移民), most of whom 54 from universities or colleges all over the country. The students live in the five or six-storey buildings built by local farmers with 12 rooms on each floor and two or three people crammed (挤)together in each room of about 10 square meters.Up to 70 or 80 people 55 the same toilet and kitchen.36. A. film B. story C. book D. magazine37. A. what B. who C. which D. why38. A. leaving B. entering C. visiting D. enjoying39. A. necessary B. meaningless C. important D. strong40. A. is determined by B. is set in C. is based on D. is taken from41. A. came up B. came on C. came along D. came out42. A. fired B. interviewed C. employed D. trained43. A. much B. little C. some D. more44. A. wondering B. researching C. searching D. telling45. A. seldom B. well C. always D. often46. A. few B. a small number of C. a few D. a large number of47. A. work B. go C. relax D. live48. A. small B. big C. famous D. unknown49. A. thinking B. earning C. shopping D. paying50. A. expensive B. comfortable C. cheap D. convenient51. A. city B. town C. community D. village52. A. original B. young C. rich D. poor53. A. school B. home C. hotel D. company54. A. come B. differ C. graduate D. suffer55. A. clean B. build C. live D. share36---40 CBABC 41---45 DCBAA 46---50 DDABC 51---55 DABCD
2023-06-28 16:50:162

大神,这个运行完怎么只能运行.xls的Excel,改了里面的.xlsx还是不行打开了是空白的Excel?

这一行改为If Right(fileName, 5) = ".xlsx" Then
2023-06-28 16:50:231

我的平板电脑7寸 NEXTBOOK 在易方数码买的 内外屏碎了 换个得多少钱

500左右 售后换一个就行了
2023-06-28 16:50:411

西洋参含片一般有什么作用?

西洋参主要功效有:西洋参可提神益气、清热养阴、生津止渴、除烦润燥,帮助人体扶正补虚。1.含化法。西洋参切片,直接口嚼含化,每次口含1~2片,每天用量2~4克,特别适用于教师、营销人员、演讲者等需要长时间讲话,容易耗气,导致气短乏力的职业人群,在提神的同时还可以改善发声状况。2.泡水法。西洋参片配以下药材一同泡水,会产生不同的保健效果:西洋参菊花茶。取西洋参片约3克,与适量菊花一同放入茶壶中,开水冲泡,至茶汤浓郁饮用。这种茶有滋阴清热、养胃生津的功效。西洋参麦冬饮。将3克西洋参片和1克麦冬放入煲中,小火熬制约1小时,饮用汤液。能滋阴润燥,适合咽干口渴、糖尿病患者、经常干咳无痰的人饮用。西洋参红枣饮。将3克西洋参片加水煮开后,加入红枣,继续煮1小时,饮用汤液,有滋阴养颜、平肝降火的作用。西洋参枸杞茶。取西洋参片3克,与适量枸杞子一同放入茶壶中,开水冲泡,至茶汤浓郁饮用。有补气养血、美白养颜的作用。/iknow-pic.cdn.bcebos.com/c995d143ad4bd113e8e5c74857afa40f4bfb059b"target="_blank"title="点击查看大图"class="ikqb_img_alink">/iknow-pic.cdn.bcebos.com/c995d143ad4bd113e8e5c74857afa40f4bfb059b?x-bce-process=image%2Fresize%2Cm_lfit%2Cw_600%2Ch_800%2Climit_1%2Fquality%2Cq_85%2Fformat%2Cf_auto"esrc="https://iknow-pic.cdn.bcebos.com/c995d143ad4bd113e8e5c74857afa40f4bfb059b"/>扩展资料:5种人不宜服用西洋参:1)面色苍白、面浮肢肿、畏寒怕冷、心跳缓慢、食欲不振、恶心呕吐、腹痛腹胀、大便溏薄、舌苔白腻者;2)男子阳痿、早泄、滑精、遗精者;3)女子痛经、闭经、白带稀薄多如水、性欲淡漠者;4)小儿发育迟缓、消化不良者;5)感冒咳嗽或急性感染有湿热症者。参考资料:/health.people.com.cn/n1/2016/1128/c408608-28904252.html"target="_blank"title="含片西洋参--人民网">含片西洋参--人民网、/health.people.com.cn/n1/2018/0606/c14739-30038334.html"target="_blank"title="西洋参--人民网">西洋参--人民网
2023-06-28 16:50:512

我的棒球在床底下的地板上,用英语怎么说? 请把这些东西带给你妹妹,用英语怎么说?

Could you please bring the things to school?I want my cap, notebook and a pen, please.
2023-06-28 16:50:582

平板电脑能玩累似极品非车的游戏吗?

能的
2023-06-28 16:51:053

求一个可爱又有型的德语名

劝你不要要德语名字,这跟英语名字还是有区别的。
2023-06-28 16:48:015

求S开头的法语名字~~谢谢大家了

stephanie
2023-06-28 16:48:036

Fly Emirates与ETIHAD是什么区别?

1、成立时间不同Fly Emirates是阿联酋航空公司,也称阿拉伯联合酋长国航空公司。阿联酋航空成立于1985年10月25日;ETIHAD全名Etihad Airways,是阿提哈德航空公司,或者叫阿联酋联合航空,成立于2003年1月,是阿联酋第二大航空公司。2、总部位置不同Fly Emirates总部地点为阿拉伯联合酋长国迪拜,以迪拜国际机场为基地;Etihad Airways总部设在阿联酋首都阿布扎比,以阿布扎比国际机场为航空枢纽。扩展资料:Fly Emirates(阿联酋航空公司)航线运作:1、“灵活航线”阿联酋航空公司投资了目前最先进的飞行计划系统,旨在精心规划航班并优化航线。与澳大利亚航空管理局(ASA)展开合作,采用根据主要气象条件优化而来的非固定(灵活)航线,时时刻刻都可能节省时间、燃料并减少碳排放量。与 ASA 合作推出灵活航线计划后,阿联酋航空公司将这项技术运用于迪拜与澳大利亚之间的航线。在一年时间内选择了迪拜、墨尔本和悉尼航线的592个航班,以此检验该技术的效果。仅仅是东行的航班,阿联酋航空公司在这一年内就节省了628吨燃油和57小时的飞行时间。每节省一分钟飞行时间,平均能减少消耗燃油62升,并且减少二氧化碳排放160千克,因为所需的燃油更少(从而减轻了飞机重量)。每个航班平均节省六分钟飞行时间,一吨航段耗油。通过优化的空中交通管理,从迪拜到悉尼的航班节省了8,040千克燃油和43分钟飞行时间。这相当于少排放了超过6,800千克的二氧化碳。2、“iFlex”阿联酋航空公司是唯一一家在迪拜至巴西圣保罗航线中使用灵活航线的航空公司。成效非常显著,燃油消耗、碳排放量和飞行时间均有所降低。阿联酋航空公司在迪拜至圣保罗的航线中采用iFlex技术,节省飞行时间高达18分钟,减小二氧化碳排放量7,700千克。阿联酋航空公司还与IATA合作,致力于将这种灵活航线系统发展为全球标准操作程序。3、在飞行途中更改航线一些政府允许使用阿联酋航空公司的新技术在飞行期间更改航线。这对超长程航线意义非凡,由于飞行途中高空风和气象参数变化迅速,定期更新这些数据就能在飞行途中更改航线。此外,国际民航组织(ICAO)和相关国家还启用了一条被称为“黄金航线”的非洲航线。如此一来,飞往西非和南美洲的航班就能节省飞行时间,降低燃油消耗。4、单引擎滑行航班调度员能够在飞行途中的某个航点重新运行航线计划,并根据最新的气象条件使用电脑生成优化后的航线。领空飞行限制加强,而飞机仍在途中时,也可使用这项技术来提高飞行效率。更改航线不仅为我们节省了时间和燃油,还减少了碳排放量。根据阿联酋航空公司提出的建议,阿联酋航空公司已经与澳大利亚、乌克兰、俄罗斯、马累、印度尼西亚以及非洲部分国家达成一致,改善了航线(缩短航程)。航班运营团队定期与政府机构会面,以期进一步改善航线,从而节省燃油并减少碳排为减少燃油消耗,阿联酋航空公司的客机尽可能采用单引擎滑行。也就是说飞机起降时都只使用一个可用引擎来滑行。调查显示,每架飞机每次起降时持续一分钟的单引擎滑行每年可节省430,000升燃油。5、使用固定地面电源为了节省飞机在登机口停放期间的燃油消耗,阿联酋航空公司的飞机在地面时均使用固定电源为空调和飞机的其他电力系统供电。以前,飞机在地面停留时,要通过燃烧燃油为辅助电源装置(APU)供电。调查显示,固定的电力装置可减少高达85%用于地面电源的燃油消耗。参考资料来源:百度百科-阿联酋航空百度百科-阿提哈德航空
2023-06-28 16:48:151

美特斯邦威喜提新代言人Rich Brian,能否找到新出路?

如今周杰伦过着老婆孩子热炕头的逍遥日子,日常生活就是晒球鞋、打打球、 旅游 ……虽然新歌遥遥无期,但时不时还是会接代言广告。 宣传图引争议 这两天海澜之家官宣周杰伦的代言,着实让很多杰迷非常兴奋。代言消息一出,海澜之家的股票随着大幅上涨。 微博相关话题 官宣后海澜之家的股价 谁曾想大惊喜变成翻车现场, 原来海澜之家官宣代言的贴文所使用的宣传图片,竟然是2012年美特斯邦威的广告照片。 网友见状纷纷下场diss海澜之家的所作所为。 海澜之家迫于压力和舆论,将原版的宣传帖子删除并发布新的宣传内容, 不过网友们并不买账。 美特斯邦威喜提新代言人 除了杰伦无辜躺枪,美特斯邦威也挺“冤”的,被动上热搜。 近期美特斯邦威不缺话题和热度,不久前他们签下说唱歌手Rich Brian(七哥)当代言人,而他作为新生代的高人气实力rapper,坐拥无数年轻粉丝,这点正好是美特斯邦威所看重的。 不走寻常路的美特斯邦威和网恋教父、沙雕大佬、宝藏男孩Rich Brian之间究竟能够碰撞出怎样的火花?在已公布的宣传图中,七哥上身的是美特斯邦威的中华美邦博物馆系列服饰。 Rich Brian的宣传lookbook 而Rich brian私下的穿衣态度十分跳脱,可土可酷可高冷可沙雕,他的百变人设让他能够驾驭各种风格的衣服,尽管不是十分帅气但是异常和谐。 《Dat$tick》Polo杉+腰包 《Glow Like Dat》卫衣和花衬衫 《Chaos》Champion卫衣 各种私服 88rising x Guess联名系列 对于今次美特斯邦威和Rich Brian的破次元壁合作,网友各抒己见。 观点一:七哥奇奇怪怪但可可爱爱,冲冲冲。 观点二:不得不说,两者很搭 观点三:我看过《一起来看流星雨》 观点四:美特斯邦威还不错 「中华美邦」 早些时候「中华美邦」带来国粹系列,让人大开眼界惊叹不已。该系列从国粹京剧中汲取养分,把衣服当成舞台。数位艺术家尽情挥洒才华,只为做出属于中国特有的潮流单品。 「中华美邦」x Jude Chen x 《白蛇传》 「中华美邦」x 朱敬一 x 《三国演义》 「中华美邦」x 萨克万 x 《齐天大圣》 「中华美邦」x JIANGJIANG x 经典曲目 「中华美邦」 《三国演义》龙凤呈祥 「中华美邦」 《白蛇传》水漫金山 美特斯邦威还以「中华美邦」之名集结包括 ENSHADOWER、PROS BY CH、ROARINGWILD、TYAKASHA、FMACM、SOUTHFINESS、MYGE、UMAMIISM 在内地 8 个街头品牌,共同推出「中华美邦」设计师系列。 「中华美邦」设计师系列 Metersbonwe x ROARINGWILD Metersbonwe x TYAKASHA Metersbonwe x FMACM Metersbonwe x PROS BY CH Metersbonwe x ENSHADOWER Metersbonwe x SOUTHFINESS Metersbonwe x UMAMIISM Metersbonwe x MYGE 人的感情记忆是很奇特的,有些东西尽管忘记了,但只要打开回忆大门,万千思绪便会涌上心头,或许这就是情怀的力量。美特斯邦威对于大部分90后来说意味着青春和启蒙。尽管中途沉寂过几年,但归来它还是在有属于它的一席之地。
2023-06-28 16:48:171

请问有朋友用过KALITA铜制滤杯吗?

没用过,估计跟普通滤杯做出来的咖啡差不多~ 查看原帖>>
2023-06-28 16:48:245

在格拉芙的职业生涯中一共获得了22项大满贯赛事冠军,并且占据世界头号排名长达多少周之久?

1987年8月17日至1991年3月10日 166周
2023-06-28 16:47:532

请问德国网球名将格拉芙在1988年全年一共输过几场球

 1988年这一年Steffi更留下了网坛惊人的一页,同时获得四大满贯赛事的冠军以及汉城奥运网球项目的金牌,前无古人(这可要靠汉城奥运把网球转为正式项目所赐),人称金满贯!这一年她72胜3败,拿下了11座冠军。
2023-06-28 16:47:502

网球大满贯

全年有四大满贯,分别是澳网(硬地)、法网(红土)、温网(草地)、美网(硬地)。正赛男女各128位选手参与竞争,不限国籍!
2023-06-28 16:47:442

詹妮弗·利奇人物简介

詹妮弗·利奇詹妮弗·利奇(JenniferUlrich),1984年10月18日出生于德国柏林,德国女演员。在2001年在电影院看电影的时候被星探发现。于是开始出演了她人生的第一部戏《大女孩不要哭》,之后频频在电视剧和一些小成本电影中出现,但还是没有改变她的影视之路。2008年直到被导演丹尼斯·甘塞尔相中,出演《浪潮》的女主角,詹妮弗·利奇在电影里扮演一位有着独特思想的高中生,大受好评,之后又出演了影片《身为人父》,此片入选到了第12届上海国际电影节金爵奖的参赛作品,此后在2010年出演了影片《我们是夜晚》扮演典雅,冷艳的夏洛特,颇受观众欢迎。目前,詹妮弗·利奇正在拍摄影片《在黑山遇见我》,尽管她在电影界并不是很有名气,不过她的演技和气质却是无与伦比。中文名:詹妮弗·利奇外文名:JenniferUlrich别名:詹妮弗·乌尔里希,JennyUlrich国籍:德国星座:天秤座身高:158cm出生地:德国柏林出生日期:1984年10月18日职业:演员代表作品:《浪潮》《我们是夜晚》昵称:Jenny演艺经历詹妮弗利奇,首次出演《大女孩不要哭》。之后出演关于虚构核灾难的获奖影片《那些云彩》。随后在一些电视剧中客串,其中包括《犯罪现场(Tatort)》,直到下一部托德·斯特拉瑟的同名小说改编的电影《浪潮》中出演主要角色Karo。首次在电影《史怀哲传(AlbertSchweitzer-alifeforAfrica)》担任说英语的角色。出演电影《我们是夜晚》,在片中扮演吸血鬼夏洛特,于因为这个角色在奥维多被授予幻想恐怖奖分类的最佳诠释新人才奖。,在意大利政治片《迪亚兹:不要清理血迹》中出演主要角色。又一次在电影《在黑山遇见我》中担任说英语的角色。在改编自KatjaKessler的同名小说的《Herzt_ne》中担任新闻记者的主要角色LissieLensen。主要作品参演电影Gro_eM_dchenweinennicht....Yvonne【BigGirlsDon"tCry/大女孩不要哭】BefreiteZone......Katja【LiberatedZone/解放区】Berlin-EineStadtsuchtdenM_rder(TVmovie)......Mia【柏林-一个城市的凶手】Untreu(TVMovie)......MariaBelolavek【不忠】Klassenfahrt-Geknutschtwirdimmer(TVMovie)......Mira【TheSchoolTrip/学校之旅】Elementarteilchen......Johanna【TheElementaryParticles/基本粒子】DieWolke......Meike【TheCloud/那些云彩】ZweizumFressengern(TVMovie)......Sara【巨鳄之灾】LaufderDinge......Clara【运行的方式】SiebenTageSonntag......Ella【SevenDaysSunday/天天都是星期天】DieWelle......Karo【TheWave/浪潮】EinTeilvonmir......Jeanette【APieceofMe/身为人父】FunnyMovie_H3:HalloweenHorrorHoste(TVMovie)......Janin【H3:万圣节恐怖旅馆】DergestiefelteKater(TVMovie)......PrinzessinFrieda【PussinBoots/穿靴子的猫德语版】AlbertSchweitzer......NurseSusiSandler【史怀哲传】WirsinddieNacht......Charlotte【WeAretheNight/我们是夜晚】DieKindervonBlankenese(TVMovie)......ReumaWeizmanZimmer_Traustdudichrein?(-ZimmerderAngst)......KatrinNadolny【-RoomofFear/恐惧室】Diaz_Don"tCleanUpThisBlood......AlmaKoch【迪亚兹:不要清理血迹】Herzt_ne(TVMovie)......LissieLensenWüstenherz_DerTripmeinesLebens(TVMovie)......Lucy【OpenDesert】MeetMeinMontenegro......Friederike【在黑山遇见我】(后期制作)Toleranz(TVMovie)......KarolineBenzko(正在拍摄)TheKrampus(暂定)参演电视剧SKK_lsch_PackdieBadehoseein......MarinaTypischSophie_Verh_ngnisvolleLüge......Hellen【受害者的罪行】IngaLindstr_m_EntscheidungamFluss......MaybrittSandstenWildeEngel_AufdiePl_tze,fertigtot......RicaMellEinFallfürZwei_EwigeFreundschaft......SabineMünsterSOKOWismar_Seitenwechsel......WenckeRothAbschnitt_Vertrauensbruch......MelissaHerfordSOKOLeipzig_ReinenHerzens......SophieSchallerGSG9_IhrEinsatzistihrLeben_AugeumAugeEinsatzinHamburg_MordnachMitternacht......AnnaMayPolizeiruf_Versto_en......HeikeRahnInallerFreundschaft_KurzesGlück......FlorianeLichtSOKOK_ln_Manliebtnureinmal......DoreaKl_werDieGerichtsmedizinerin_SchlafKindlein,schlaf......BrittaDorn/KatjaHagenTatort_Familienaufstellung.....ArzuKorkmaz【犯罪现场】KommissarStolberg_DiefalscheFrau......AlissaEbersteinAlarmfürCobra11_DieAutobahnpolizei_Operation:Gemini......LisaLichtenberg【极速特警】SOKOLeipzig_Geisterhaus......LisaBauer【莱比锡探案组】Polizeiruf_DieGurkenk_nigin......SteffiK_nig【匪警】SOKOK_ln_MitHiebundStich......BiancaAbtAlarmfürCobra11_DieAutobahnpolizei-DieGeisel......NicoleFiedler参演短片FranziskaSpiegel_EineErinnerung......StefanieVidiots......LeaDerb_seWolf
2023-06-28 16:47:421