- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码要求我输入 .txt 文件中的名称,如果名称有效,我就可以登录。
到目前为止我已经做到了这一点。成功登录后,我可以按选项 2 添加新学生。现在我在选项 3 上犯了一个错误。选项 3 要求我输入学生的成绩。点击选项 3 后,它会询问我的成绩,每当我输入成绩时,程序就会崩溃。我希望它显示 GPA。以及收到的所有成绩。这是我在代码中写的。我不确定我的算法在哪里犯了错误。
//This is my code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* Constants used in the application */
const char * PASSWORD_FILE = "passwords.txt";
const int MAX_STUDENTS = 1000;
const int MAX_GRADES = 100;
const int MAX_CHARS = 25;
//Function to print Author Info
void printAuthorInfo();
//Function to display initial Menu and Get the User's Selection
int showMainMenu();
//Function to Login to the System
int login();
//member menu
int memberMenu();
//Enter GPA for current Student
void enterGPA(char ids[1000][25], float grades[1000][100], int[], int);
//Display student records to stdout
void print(char[1000][25], char[1000][25], char[1000][25], float[1000][100],
int[], int);
//Save Records to File
void save(char[1000][25], char[1000][25], char[1000][25], float[1000][100],
int[], int);
//Load Records from File
void load(char fn[1000][25], char ln[1000][25], char ids[1000][25], float
grades[1000][100], int counts[], int num);
int main()
{
int loggedIn = 0;
int choice, subChoice;
char firstNames[1000][25];
char lastNames[1000][25];
char ids[1000][25];
float grades[1000][100];
int numGrades[1000];
char fn[25];
char ln[25];
int numStudents = 0;
//Top Level Loop
do {
//display menu and get the user's selection
choice = showMainMenu();
if (choice == 0)
{
printf("Thank you for using our Application! GoodBy!");
}
else if (choice == 1)
{
printAuthorInfo();
}
else if (choice == 2)
{
loggedIn = login();
if (loggedIn == 1)
{
printf("Welcome! You are now Logged In\n");
//Interact with the user
do
{
subChoice = memberMenu();
if (subChoice == 1)
{
printAuthorInfo();
}
else if (subChoice == 2)
{
printf("Enter First Name: ");
scanf("%s", firstNames[numStudents]);
printf("Enter Last Name: ");
scanf("%s", lastNames[numStudents]);
printf("Enter Student ID: ");
scanf("%s", ids[numStudents]);
numStudents++;
printf("Student Has been added to System");
}
else if (subChoice == 3)
{
enterGPA(ids, grades, numGrades, numStudents);
}
else if (subChoice == 4)
{
print(firstNames, lastNames, ids, grades, numGrades,
numStudents);
}
else if (subChoice == 5)
{
void save(firstNames, lastNames, ids, grades, counts,
numStudents);
}
else if (subChoice == 6)
{
load(firstNames, lastNames, ids, grades, numGrades,
&numStudents);
}
else if (subChoice == 7)
{
printf("\nYou are logged Out Now");
}
printf("\n");
} while (subChoice != 7);
}
else
{
printf("Login Failed - Try again");
}
}
printf("\n\n");
} while (choice != 0);
system("pause");
return 0;
}
void printAuthorInfo()
{
printf("Author Information\n");
printf("Author Name: %s\n", "myinfo ");
printf("Student ID: %s\n", "12345");
}
int showMainMenu()
{
//User Selection
int choice;
do
{
//Display menu
printf("Press 0 to exit\n");
printf("Press 1 for Author Info\n");
printf("Press 2 for Login\n");
printf("Enter choice? ");
//Read the selection
scanf("%d", &choice);
printf("\n");
} while (choice < 0 || choice > 2);
//Return selection
return choice;
}
int login()
{
//Get User's username and password
char username[30];
char password[30];
char usernameInFile[30];
char passwordInFile[30];
int valid = 0;
//Prompt and get Username
printf("Enter Username: ");
scanf("%s", username);
//Prompt and get Password
printf("Enter Password: ");
scanf("%s", password);
//Open the input file
FILE * fptr = fopen(PASSWORD_FILE, "r");
while (fscanf(fptr, "%s %s", usernameInFile, passwordInFile) == 2)
{
if (strcmp(username, usernameInFile) == 0 && strcmp(password,
passwordInFile) == 0)
{
valid = 1;
}
}
fclose(fptr);
return valid;
}
int memberMenu()
{
int choice = 0;
do
{
printf("Press 1 for author info\n");
printf("Press 2 to Enter new student\n");
printf("Press 3 to enter grade for existing student\n");
printf("Press 4 to print student records\n");
printf("Press 5 to save student records\n");
printf("Press 6 to load student records\n");
printf("Press 7 to logout\nEnter Selection? ");
scanf("%d", &choice);
printf("\n");
} while (choice < 1 || choice > 7);
return choice;
}
void print(char fn[1000][25], char ln[1000][25], char ids[1000][25], float
grades[1000][100], int counts[], int num)
{
int i, j;
float sum, avg;
sum = 0;
avg = 0;
printf("%-15s %-15s %-10s %-8s %-8s\n", "First Name",
"Last Name", "Std ID", "GPA", "Grades");
for (i = 0; i < num; i++)
{
printf("%-15s %-15s %-10s", fn[i], ln[i], ids[i]);
for (j = 0; j < counts[i]; j++)
{
sum += grades[i][j];
}
avg = sum / counts[i];
sum = 0;
printf("%-8.2f", avg);
for (j = 0; j < counts[i]; j++)
{
printf("%-6.2f", grades[i]);
}
printf("\n");
}
}
void save(char fn[1000][25], char ln[1000][25], char ids[1000][25], float
grades[1000][100], int counts[], int num)
{
int i, j;
float sum, avg;
char fname[100];
sum = 0;
avg = 0;
//Get file name
printf("Enter Output File Name: ");
scanf("%s", fname);
FILE * fptr = fopen(fname, "w");
fprintf(fptr, "%d\n", num);
for (i = 0; i < num; i++)
{
fprintf(fptr, "%s %s %s %d ", fn[i], ln[i], ids[i], counts[i]);
for (j = 0; j < counts[i]; j++)
{
fprintf(fptr, "%.2f ", grades[i]);
}
fprintf(fptr, "\n");
}
fclose(fptr);
}
void load(char fn[1000][25], char ln[1000][25], char ids[1000][25], float
grades[1000][100], int counts[], int * num)
{
char fname[100];
int cur = *num;
int i, j, n, numStudents = 0;
float grade;
//prompt and get input file
printf("Enter Input File Name: ");
scanf("%s", fname);
//open file to read
FILE * fptr = fopen(fname, "r");
fscanf(fptr, "%d", &numStudents);
for (i = 0; i < numStudents && cur < 1000; i++)
{
fscanf(fptr, "%s %s %s %d", fn[cur], ln[cur], ids[cur], &n);
for (j = 0; j < n && counts[i] < 100; j++)
{
fscanf(fptr, "%f", &grade);
grades[i][counts[i]] = grade;
counts[i] += 1;
}
cur += 1;
}
*num = cur;
fclose(fptr);
}
void enterGPA(char ids[1000][25], float grades[1000][100], int counts[], int
num)
{
char id[25];
int i, idx;
float gpa;
idx = -1;
printf("Enter Student ID: ");
scanf("%s", id);
//find student
for (i = 0; i < num && idx == -1; i++)
{
if (strcmp(id, ids[i]) == 0)
{
idx = i;
}
}
if (idx >= 0)
{
printf("Enter Grade: ");
scanf("%f", &gpa);
grades[idx][counts[idx]] = gpa;
counts[idx] += 1;
}
else
{
printf("NO Such Student Exist In The System");
}
}
最佳答案
grades[i][counts[i]] = grade;
: Checkcounts[i]
. I thinkint numGrades[1000];
isn't initialize. You use uninitialize value. – BLUEPIXY
BLUEPIXY 是完全正确的,只有上面的行在函数 load()
中,而使用 valgrind
运行表明,对于选项 3,函数 中存在相同的问题>enterGPA()
:
grades[idx][counts[idx]] = gpa;
try
int numGrades[1000];
-->int numGrades[1000] = {0};
– BLUEPIXY
这确实解决了所有地方的问题。
关于c - 插入成绩和 GPA 不适用于学生,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41009060/
void fillQueueWithStudents(Queue *q) { int counter = 1; char answer = 'Y'; //this signifies th
我在 JSP 上做了一个项目,通过 MySQL 数据库根据分数计算 GPA(平均绩点)。这是我的公式: sb=con.prepareStatement("select round((((score)/
为了更详细地说明我正在处理的问题,确切的任务是: 编写一个程序,计算平均值、最小值、最大值和 所有学生的平均 GPA。首先,你的程序会读入学生记录 (姓名和 GPA)并确定文件中学生记录的数量。毕竟
我可以制作一个表格来显示每个部门的 GPA,但我不知道如何让它只显示 GPA 最高的部门。 我的查询是: SELECT avg(grade) as GPA, deptID from tblStuden
package gpatogradecalculator; import java.util.Scanner; public class GPAtoGradeCalculator { publ
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
到目前为止,这是我的代码(已更新): import java.util.Scanner; public class gpa { public static void main(String[]
这里是 Java 初学者。所以我对如何制作它感到困惑,所以如果用户输入是“A+”,我将得到 4.0 并且不会更高?类似地,对于“F”,我想让 F、F-、F+ 的结果都是 0.0 gpa。我想要么为字母
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我的主类中有这段代码。我的问题是,GPA 是用总分除以类(class)来计算的。它没有给我完整的号码。 EX,如果总数为 14,类(class)为 4,则为 3.5,我的代码只给我 3.0。有谁知道为
所以这段代码的整个目标是计算一个学期的 GPA。它要求用户提供学期名称(即 2014 年秋季)、类(class)名称、学分和成绩。它将这些信息列出到一个文本文件中,并计算 GPA。 我似乎不知道如何做
我无法找出我的程序的问题,非常感谢任何帮助!不幸的是,我是一名初学者程序员......当我运行该程序时,它会正确要求类(class)数量、学分和成绩,但它会忽略输入的学分,只给出字母成绩的正常值。最后
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
这个问题已经有答案了: How do I compare strings in Java? (23 个回答) 已关闭 8 年前。 GPA计算器 我知道那里有类似的线程,但我见过的没有一个遇到我遇到的问
我想根据成绩和学分计算每个学生的 GPA。我已经执行了这样的事情 SET GPA=(SELECT((t.grade*c.credits)/c.credits) FROM Student s, Take
我在连接这个表格上的表格以获得单一结果时遇到了一些问题。计算 GPA 的方法如下: 获取每门类(class)的平均成绩。 将每个平均值乘以该类(class)的学分数。 添加 2 的结果。 将结果除以
我正在尝试创建一个表单,要求用户输入姓名、GPA 和电话号码。我需要帮助来验证 GPA 是否为 0 到 4 之间的数字,包括成绩后最多两位小数。我不知道从哪里开始!
我是 JavaScript 初学者。在这里,我无法弄清楚为什么我的代码没有读取我输入的值,尽管我找不到代码中的任何错误。有什么有用的建议来编辑我的代码以修复错误吗? function gpacalc(
出于某种原因,我的程序在计算 GPA 平均值时出错。如果我输入 4.0 3 次,那么它说平均 GPA 是 3.0 但应该是 4.0。有人可以帮我找到问题吗? //variables double gp
家庭作业问题。我需要遍历一系列字典以获得最高的 gpa 并打印学生的名字和姓氏。我在访问字典条目的 gpa 字段时遇到问题。 // Task 6 var highestGPA = 0.0 var st
我是一名优秀的程序员,十分优秀!