OQS奥琪斯😱
立华落夏
关注数: 37
粉丝数: 265
发帖数: 13,750
关注贴吧数: 153
我睦头人今天就要砸屎敏那👿 喵梦,我砸!👊😡😡😡 素世,我砸!👊😡😡😡 大祥,我砸!👊😡😡😡 初华,我砸!👊😡😡😡 海铃,我砸!👊😡😡😡 沟槽的记着,我砸!👊😡😡😡 我砸,我砸,我砸砸砸!👊😡😡😡身体里沉睡的野兽苏醒了!强手裂颅屈人之威叹为观止!👿👿👿
CPU供电插上就什么反应都没有,去掉CPU供电电源风扇都能转了 如题,刚装好的机子,接口都取掉短接主板46脚电源是能转的,是不是说明电源没问题?只要插上CPU供电就什么反应都没了!有没有老图钉分析一下
最近一口气看完咯,能做这么多季是真有钱 真想看到男主和雪菜结婚才满足啊
拼夕夕,永远滴神! 😭😭😭以前是我错怪你们了,我先去问京东客服,送不送背包,结果这客服死活抠门不送。结果拼夕夕的不仅答应送我背包,下了单还说键盘鼠标也给了这就是做生意的格局,京东贵几百还这么抠
有考完研现在提前进组的吗? 突然过来了,感觉全世界就我一个人这么干一样有没有一样的老铁
学长学姐们,你们当初有让提前去团队的吗? 我已经被拉过来了,我这人就是不太会拒绝。。。团队是搞射频相关的,想问问有没有这种经历的,在学校会被干嘛
兄弟们,刚进去维拉骑完摩托就一直闪退,进游戏进去了也马上闪退 不停地闪退重启游戏,进不去了在亚夏本来都好好的,有没有大手子解决一下,pc端玩的,电脑型号微星GP62MVR 7rfx
大佬们,寄手办回去直接用泡泡纸包上能行么 毕业回家了,单有个盒子里面固定的模具丢了,用这种泡泡棉直接裹上寄回去没事吧,会不会蹭掉色啥的?会不会因为高温颜色直接融化了
今天升级车失败给的瓶子开了辆魔怪pro,这速度也太有内味儿了 我的少年时代又回来辣
碰到个买家货到了一直不确认,也不回复我消息咋办,有点怕 昨天看到个老哥的帖子,有点慌他付款后,我给他发发货信息,一直到显示到货问他情况,消息都是已读不回复
加藤惠站姿现在这么抢手的么。。。 我挂海鲜市场和贴吧两浴衣蕾姆的图想出,结果好几个问我旁边的站姿加藤惠
出个全新未拆的原色浴衣蕾姆 现在海鲜市场挂着,1300可刀,只出信用优秀及上的个人真爱买家
systemview5.0在win10安装过程中读条后无反应的解决办法 由于网课实验要用这个软件,老师发过来没管就让我们装上,结果我和室友都表示闪退无法安装。经过查询贴吧内其他人描述相关,找到了两种解决办法
【震惊】言灵术士沙雕室友神来一指,竟让霸瞳六爷当场落泪
我要压岁钱 我要压岁钱
【幻想家园】-拔刀-和风-枫-暮色-精英怪-全新开服 广告做得再好,不如进图玩一玩,装备回收,交易鸡油,系兄弟就来砍我! 管理有序,玩家健康,现刚开服,带你体验不一样的传奇(MC) 群文件里有合成表,JAVA,服务器整合包,开荒火热进行中,快来一刀9999,装备不花一分钱。 服务器版本:1.7.10 服务器类型:生存 服务器人数:20
为什么VC6上能运行VS2010上把四个score输入完就闪退出来了? 大神帮我看一眼,我的一段作业,求解释,代码如下 #include<stdio.h> #include<windows.h> #define AMOUNT 1 char * s_gets(char * st,int n); struct stl { char IDNumber[16]; char FamilyName[16]; char GivenName[16]; int sex; int BirthYear; int BirthMonth; int BirthDay; float score[4]; float sum; float average; }; int main(void) { struct stl student[AMOUNT]; int count=0; int index; printf("Please enter the student IDNumber.\n"); printf("Press [enter] to stop.\n"); while(count<AMOUNT && s_gets(student[count].IDNumber,16) != NULL && student[count].IDNumber[0] !='\0') { printf("Enter the Family name.\n"); s_gets(student[count].FamilyName,16); printf("Enter the GivenName.\n"); s_gets(student[count].GivenName,16); printf("enter the sex,0 is woman,1 is man.\n"); scanf("%d",&student[count].sex); printf("Enter the BirthYear.\n"); scanf("%d",&student[count].BirthYear); printf("Enter the BirthMonth.\n"); scanf("%d",&student[count].BirthMonth); printf("Enter the BirthDay.\n"); scanf("%d",&student[count].BirthDay); printf("Enter the 4 scores.\n"); scanf("%f%f%f%f",&student[count].score[0],&student[count].score[1],&student[count].score[2],&student[count].score[3]); student[count].sum=student[count].score[0]+student[count].score[1]+student[count].score[2]+student[count].score[3]; student[count].average=student[count].sum/4; count++; while(getchar() != '\n') continue; if(count<AMOUNT) printf("Enter the next student.\n"); } if(count>0) { printf("Here is the list of your students:\n"); printf("IDNumber\t Name\t sex\t BirthYear/Month/Day\t score1 score2 score3 score4\t sum\t average\t\n"); for(index=0;index<count;index++) printf("%5s\t %9s%s\t %3d\t %10d/%d/%d\t %14.1f %4.1f %4.1f %4.1f\t%.2f\t\t%3.1f\t\n",student[index].IDNumber,student[index].FamilyName ,student[index].GivenName,student[index].sex,student[index].BirthYear,student[index].BirthMonth,student[index].BirthDay,student[index].score[0],student[index].score[1],student[index].score[2],student[index].score[3],student[index].sum,student[index].average); } else printf("no student\n"); } char * s_gets(char * st,int n) { char * ret_val; char * find; ret_val=fgets(st,n,stdin); if(ret_val) { find=strchr(st,'\n'); if(find) *find='\0'; else while(getchar() !='\n') continue; } return ret_val; }
为什么VC6上能运行VS2010上把四个score输入完就闪退出来了? 大神帮我看一眼,我的一段作业,求解释,代码如下 #include<stdio.h> #include<windows.h> #define AMOUNT 1 char * s_gets(char * st,int n); struct stl { char IDNumber[16]; char FamilyName[16]; char GivenName[16]; int sex; int BirthYear; int BirthMonth; int BirthDay; float score[4]; float sum; float average; }; int main(void) { struct stl student[AMOUNT]; int count=0; int index; printf("Please enter the student IDNumber.\n"); printf("Press [enter] to stop.\n"); while(count<AMOUNT && s_gets(student[count].IDNumber,16) != NULL && student[count].IDNumber[0] !='\0') { printf("Enter the Family name.\n"); s_gets(student[count].FamilyName,16); printf("Enter the GivenName.\n"); s_gets(student[count].GivenName,16); printf("enter the sex,0 is woman,1 is man.\n"); scanf("%d",&student[count].sex); printf("Enter the BirthYear.\n"); scanf("%d",&student[count].BirthYear); printf("Enter the BirthMonth.\n"); scanf("%d",&student[count].BirthMonth); printf("Enter the BirthDay.\n"); scanf("%d",&student[count].BirthDay); printf("Enter the 4 scores.\n"); scanf("%f%f%f%f",&student[count].score[0],&student[count].score[1],&student[count].score[2],&student[count].score[3]); student[count].sum=student[count].score[0]+student[count].score[1]+student[count].score[2]+student[count].score[3]; student[count].average=student[count].sum/4; count++; while(getchar() != '\n') continue; if(count<AMOUNT) printf("Enter the next student.\n"); } if(count>0) { printf("Here is the list of your students:\n"); printf("IDNumber\t Name\t sex\t BirthYear/Month/Day\t score1 score2 score3 score4\t sum\t average\t\n"); for(index=0;index<count;index++) printf("%5s\t %9s%s\t %3d\t %10d/%d/%d\t %14.1f %4.1f %4.1f %4.1f\t%.2f\t\t%3.1f\t\n",student[index].IDNumber,student[index].FamilyName ,student[index].GivenName,student[index].sex,student[index].BirthYear,student[index].BirthMonth,student[index].BirthDay,student[index].score[0],student[index].score[1],student[index].score[2],student[index].score[3],student[index].sum,student[index].average); } else printf("no student\n"); } char * s_gets(char * st,int n) { char * ret_val; char * find; ret_val=fgets(st,n,stdin); if(ret_val) { find=strchr(st,'\n'); if(find) *find='\0'; else while(getchar() !='\n') continue; } return ret_val; }
为什么VC6上能运行VS2010上把四个score输入完就闪退出来了? 大神帮我看一眼,我的一段作业,求解释,代码如下 #include<stdio.h> #include<windows.h> #define AMOUNT 1 char * s_gets(char * st,int n); struct stl { char IDNumber[16]; char FamilyName[16]; char GivenName[16]; int sex; int BirthYear; int BirthMonth; int BirthDay; float score[4]; float sum; float average; }; int main(void) { struct stl student[AMOUNT]; int count=0; int index; printf("Please enter the student IDNumber.\n"); printf("Press [enter] to stop.\n"); while(count<AMOUNT && s_gets(student[count].IDNumber,16) != NULL && student[count].IDNumber[0] !='\0') { printf("Enter the Family name.\n"); s_gets(student[count].FamilyName,16); printf("Enter the GivenName.\n"); s_gets(student[count].GivenName,16); printf("enter the sex,0 is woman,1 is man.\n"); scanf("%d",&student[count].sex); printf("Enter the BirthYear.\n"); scanf("%d",&student[count].BirthYear); printf("Enter the BirthMonth.\n"); scanf("%d",&student[count].BirthMonth); printf("Enter the BirthDay.\n"); scanf("%d",&student[count].BirthDay); printf("Enter the 4 scores.\n"); scanf("%f%f%f%f",&student[count].score[0],&student[count].score[1],&student[count].score[2],&student[count].score[3]); student[count].sum=student[count].score[0]+student[count].score[1]+student[count].score[2]+student[count].score[3]; student[count].average=student[count].sum/4; count++; while(getchar() != '\n') continue; if(count<AMOUNT) printf("Enter the next student.\n"); } if(count>0) { printf("Here is the list of your students:\n"); printf("IDNumber\t Name\t sex\t BirthYear/Month/Day\t score1 score2 score3 score4\t sum\t average\t\n"); for(index=0;index<count;index++) printf("%5s\t %9s%s\t %3d\t %10d/%d/%d\t %14.1f %4.1f %4.1f %4.1f\t%.2f\t\t%3.1f\t\n",student[index].IDNumber,student[index].FamilyName ,student[index].GivenName,student[index].sex,student[index].BirthYear,student[index].BirthMonth,student[index].BirthDay,student[index].score[0],student[index].score[1],student[index].score[2],student[index].score[3],student[index].sum,student[index].average); } else printf("no student\n"); } char * s_gets(char * st,int n) { char * ret_val; char * find; ret_val=fgets(st,n,stdin); if(ret_val) { find=strchr(st,'\n'); if(find) *find='\0'; else while(getchar() !='\n') continue; } return ret_val; }
1
下一页