一道简单的C语言问题求大神速来
学生成绩统计(一维数组)从键盘输入一个班(全班最多不超过30人)学生某门课的成绩,当输入成绩为负值时,输入结束,分别实现下列功能:(1)统计不及格人数并打印不及格学生名单...
学生成绩统计(一维数组)从键盘输入一个班(全班最多不超过30人)学生某门课的成绩,当输入成绩为负值时,输入结束,分别实现下列功能:(1)统计不及格人数并打印不及格学生名单;
#include<stdio.h>
struct student{char name[20];double score;}stu;
void Unpass(student stu[])
{ int i;
while(stu[i].score>=0)
{for(i=0;i<30;i++)
{ if(stu[i].score<60)
printf("%s %.2f\n",stu[i].name,stu[i].score);}
}
}
void main()
{ int i;
struct student stu[30];
while(stu[i].score>=0)
{
for(i=0;i<30;i++)
scanf("%s %.2f\n",stu[i].name,stu[i].score);
}
Unpass(stu);
}
这个哪里错了??? 展开
#include<stdio.h>
struct student{char name[20];double score;}stu;
void Unpass(student stu[])
{ int i;
while(stu[i].score>=0)
{for(i=0;i<30;i++)
{ if(stu[i].score<60)
printf("%s %.2f\n",stu[i].name,stu[i].score);}
}
}
void main()
{ int i;
struct student stu[30];
while(stu[i].score>=0)
{
for(i=0;i<30;i++)
scanf("%s %.2f\n",stu[i].name,stu[i].score);
}
Unpass(stu);
}
这个哪里错了??? 展开
3个回答
推荐于2016-04-13
展开全部
#include<stdio.h>
struct student{
char name[20];
double score;
}stu;
void Unpass(student stu[])
{
int i;
for (i = 0; stu[i].name[0] != '\0'; i++)
{
if (stu[i].score < 60)
printf("%s %.2f\n", stu[i].name, stu[i].score);
}
}
//void main()
//{
// int i;
// struct student stu[30];
// while (stu[i].score >= 0)//这stu[i].score 没有赋值
// {
// for (i = 0; i < 30; i++)
// scanf("%s %.2f\n", stu[i].name, stu[i].score);// ->输入 &stu[i].score %.2f 没有输入格式
// }//double -》%lf
//
// Unpass(stu);
//}
void main()
{
int i = 0;
struct student stu[30] = { 0 };
while (1)//
{
scanf("%s %lf", stu[i].name, &stu[i].score);
if (stu[i].score < 0){
stu[i].name[0] = 0;
stu[i].score = 0;
i--;
break;
}
i++;
}
Unpass(stu);
}
展开全部
#include <stdio.h>
#define STUDENT_LEN = 30;
struct student
{
double score;
char name[32];
};
struct student stu[STUDENT_LEN];
void upPass( struct student *stu )
{
for( int i=0;i<STUDENT_LEN ;++i )
{
if( stu[i]>60)
{
printf("%s %.2f\n",stu[i].name,stu[i].score);
}
}
}
void main( int argc,char** argv )
{
for(int i=0;i<STUDENT_LEN ;++i )
{
scanf("%s %.2f\n",stu[i].name,stu[i].score);
}
upPass();
}
没有编译过,你自己在验证下。
附带小广告一条(勿喜勿点) http://www.iu8s.com/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
参考下面你的程序i 没有初始话并且逻辑上有一点问题的
#include<stdio.h>
struct student{char name[20];double score;}stu;
void Unpass(student stu[])
{ int i;
for(i=0;i<30;i++)
{
if (stu[i].score <= 0) break;
if(stu[i].score<60)
printf("%s %.2f\n",stu[i].name,stu[i].score);}
}
}
void main()
{ int i;
struct student stu[30];
for(i=0;i<30;i++)
{
scanf("%s %.2f\n",stu[i].name,stu[i].score);
if (stu[i].score <= 0) break;
}
Unpass(stu);
}
#include<stdio.h>
struct student{char name[20];double score;}stu;
void Unpass(student stu[])
{ int i;
for(i=0;i<30;i++)
{
if (stu[i].score <= 0) break;
if(stu[i].score<60)
printf("%s %.2f\n",stu[i].name,stu[i].score);}
}
}
void main()
{ int i;
struct student stu[30];
for(i=0;i<30;i++)
{
scanf("%s %.2f\n",stu[i].name,stu[i].score);
if (stu[i].score <= 0) break;
}
Unpass(stu);
}
追问
不行啊 按照格式输入名字 成绩 按一次回车就结束了 什么都没输出= =
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询