gpt4 book ai didi

在同一函数中使用不同的值多次调用函数

转载 作者:行者123 更新时间:2023-11-30 19:03:08 25 4
gpt4 key购买 nike

我尝试过制作许多不同变量的行来输入类(class),然后将类(class)分配给学分并在收据上输出。但我不想制作 300 多行开关,而是想制作一个可以调用的开关函数。我想我应该创建一个 for 循环来根据该人选择的类(class)数量来运行 switch 函数,但是当我运行它时,代码似乎会永远运行,甚至没有点击 return 0 来结束程序。调用该函数有什么提示或者我做得不好吗?

int studentId, var, i;
float first;
int course, course1, course2;
float second, amount;
float credit1, credit2, credit3, credit4, credit5, credit6, credit7, credit8;
float paymentA, paymentB, paymentC, paymentD, total;
float creditA, creditB;
char *a;


void courseInfo(int myCourse){
switch(myCourse)
{
case 4587:
credit1 = 4;
a = "MAT 236";
break;
case 4599:
credit1 = 3;
a = "COP 220";
break;
case 8997:
credit1 = 1;
a = "GOL 124";
break;
case 9696:
credit1 = 3;
a = "COP 100";
break;
case 4580:
credit1 = 3;
a = "MAT 230";
break;
case 4581:
credit1 = 4;
a = "MAT 231";
break;
case 4582:
credit1 = 2;
a = "MAT 232";
break;
case 4583:
credit1 = 2;
a = "MAT 233";
break;
case 3587:
credit1 = 4;
a = "MAT 256";
break;
case 4519:
credit1 = 3;
a = "COP 420";
break;
case 6997:
credit1 = 1;
a = "GOL 127";
break;
case 9494:
credit1 = 3;
a = "COP 101";
break;
default:
printf("Sorry invalid entry!\n\n");
}
printf("%.2d\t%.2c\t%.2f\t\t$ %.2f\n", course, a, credit1 , credit1*120.25);
}

int main()
{


/*taking in the variables amounts*/





printf("Please enter Student ID:\n");
scanf("%i", &studentId);
printf("Enter how may courses-up to 3:\n");
scanf("%f", &amount);

for(i = 1; i = amount; i++){
printf("Enter the %.2f course number(s)\n", amount);
scanf("%i %i %i", &course, &course1, &course2);
courseInfo(course);
courseInfo(course1);
courseInfo(course2);
}

我只想输入例如 3 门类(class),您将输入您想要参加的 3 门类(class) CRN,它将运行到函数中,然后打印出价格和您正在参加的类(class),然后重复循环接下来的 3. 我想如果没有输入任何内容,就像有人选择 1 门类(class)一样,则 course1 和 course2 变量将不会被分配值,从而跳过切换

最佳答案

避免全局变量。声明/定义变量尽可能靠近它们的使用位置。在 CourseInfo()您正在使用a如果 myCourse 则未初始化传递给函数的 case 不匹配。在 C 和 C++ 中取消引用无效指针值是未定义的行为。还有 printf() 调用中格式字符串的第二个转换说明符“%c”里面CourseInfo()与传递的参数 ( a ) 不匹配,该参数是指向 char 的指针- 格式"%s" .

还有

scanf("%i %i %i", &course, &course1, &course2);

是未定义的行为,因为三个参数是 float s,不是int s。参数的类型必须与格式字符串的转换说明符匹配。

for(i = 1; i = amount; i++){
printf("Enter the %.2f course number(s)\n", amount);
scanf("%i %i %i", &course, &course1, &course2);
courseInfo(course);
courseInfo(course1);
courseInfo(course2);
}

要求用户输入最多三门类(class):

int amount;

// ...

printf("Enter the %i course number(s):\n", amount);

for (int i = 0; i < amount; ++i) {
int course;
if (scanf(" %i", &course) == 1)
courseInfo(course);
}

如果您想保存类(class)编号以供进一步使用,请使用 int 数组,确保写入的元素不超过该数组的大小,并在 for 中使用它-循环:

int courses[amount] = { 0 };  // initialize with all zeros to be able to tell
// later if a input operation failed.

for (int i = 0; i < amount; ++i) {
int course;
if (scanf(" %i", &courses[i]) == 1)
courseInfo(course);
}

根据您当前的设计,无法了解 courseInfo() 之外的信息。如果给定的类(class)编号有效。也许courseInfo()应该返回 bool ( <stdbool.h> ) 取决于传递的值是否有效。

关于在同一函数中使用不同的值多次调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54546062/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com