0

我正在尝试使用基本的 c 构造和循环创建一个程序,该程序从文件中读取数学测验分数并将分数打印为星形(如条形图)。该程序将尝试读取文件并直观地描绘学生在不同数学领域(加法、减法、乘法和除法)中的表现。

输入文件如下所示:

2 
Bobby 
6 10 
70 80
50 60 
4 5 
Joel
7 12
20 25
4 5
3 10

第一行代表文件中的学生总数。在此之后,每个学生将有 5 行个人数据。这些行中的第一行是学生姓名,接下来的 4 行是各个数学领域的分数(6 分中的 5 分,80 分中的 70 分等)

我试图接收类似于此示例的输出:

Bobby
+: ******** 
-: ****** 
*: ***** 
/: **** 
Joel
+: **** 
-: ******** 
*: *** 
/: ******* 

我知道我需要使用循环和 ifp(内部文件指针)来实现这一点,但我不太确定如何实现它们来读取程序的各个行,因为这是我第一次在 C 中使用输入文件。

** 第四次编辑 - 目标完成!

#include<stdio.h>
#include<stdlib.h>
#include<string.h>

//int main
int main() {

    FILE * ifp;
    ifp = fopen("input.txt", "r");

    FILE * ofp;
    ofp = fopen("output.txt", "w");

    int students = 0, i, j;
    int sum = 0;
    int perc;
    int score1,score2;
    char name [10];

    //read the first line for # of students
    fscanf(ifp, "%d", &students);

    //Loop for both students
    for (i=0; i<students; i++) {

                fscanf(ifp, "%s", &name);
                fprintf(ofp, "%s:", name);

                fscanf(ifp, "%d %d", &score1, &score2);
                perc = (10 * score1/score2);
                fprintf(ofp, "\n +:");
                for(j=0; j<perc; j++){
                    fprintf(ofp, "*");
                }
                fscanf(ifp, "%d %d", &score1, &score2);
                perc = (10 * score1/score2);
                fprintf(ofp, "\n -:");
                for(j=0; j<perc; j++){
                    fprintf(ofp, "*");
                }

                fscanf(ifp, "%d %d", &score1, &score2);
                perc = (10 * score1/score2);
                fprintf(ofp, "\n *:");
                for(j=0; j<perc; j++){
                    fprintf(ofp, "*");
                }
                fscanf(ifp, "%d %d", &score1, &score2);
                perc = (10 * score1/score2);
                fprintf(ofp, "\n /:");
                for(j=0; j<perc; j++){
                    fprintf(ofp, "*");
                }
                    fprintf(ofp, "\n");
    }
    fclose(ifp);
    fclose(ofp);

return 0;
}

我之前的图表错误似乎是我的一个简单的操作顺序错误。感谢您的所有帮助!

4

2 回答 2

0

如果您可以指望您的输入文件始终按照您描述的方式进行格式化,那么您不必担心格式检查(尽管它始终是一个好主意)。仍然在适当的地方检查错误(文件操作、fgets 等)。我认为您不需要使用 switch case 语句。for 循环就足够了,因为您可以完成处理一个学生记录所需的步骤,然后让 for 循环为任何剩余的学生重复这些步骤。我会做以下事情:

/* declare variables */
int num_students    // the number of students on the first line
char name[50], line[100]    // student name, a line from the input file
int addition_score, addition_max    // student's addition score, max addition score possible
int subtraction_score, subtraction max
/* ints for multiply and divide scores as well */
float percent   // used for _score / _max (re-use for + - * and /)
FILE input_file, output_file

// open input file for reading
// open output file for writing
// fgets line from input file
// sscanf to extract num_students
// for(c=0; c<num_students; ++c) {

    //fgets name

    //fgets the line containing the addition scores
    //sscanf line for addition_score and addition_max
    //same two commands for -, *, and /

    //percent = (float)addition_score / addition_max 
    //output the student's name to output file
    //figure out how to represent the float in stars (I'll leave this up to you)
    //output a line containing "+:" and your stars to the output file

    //repeat that procedure for -, *, and /
   } // end for loop
// close input file
// close output file
return 0;

希望有帮助。

于 2013-03-22T01:20:29.713 回答
0

好吧,我会做什么,在用数学找到分数的平均值之后,我会创建一个 for 循环,并将循环变量(i 或 j 或其他)更改为平均值,并在 for 循环中打印星号。

//Here is an example of a for loop that loops 20 times
    for ( n=0; n < 20; n++ )
{
   // whatever here...
}

那有意义吗?

于 2013-03-21T20:37:30.453 回答