现在我正在学习 C 编程课程,所以我对 C 完全是新手。我现在很头疼,因为我的代码没有按照我认为的方式工作。
这是我显示问题的代码:
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <ctype.h>
#include <string.h>
int main()
{
printf("\n\nList of Paycodes:\n");
printf("1 Manager\n");
printf("2 Hourly worker\n");
printf("3 Commission Worker\n");
printf("4 Cook\n\n");
bool cd=true;
float weekmoney;
char name[100];
char code[10];
int codeint;
char cl;
int cllen;
char hw[5];
int hwint;
int salary=0;
while(cd){
printf("Enter employee name: ");
fgets(name,100,stdin);
name[strlen(name)-1]='\0'; // nk remove new line lepas user input
printf("Enter employee\'s paycode: ");
strcpy(code, "");
fgets(code, 10, stdin);
codeint = atoi(code);
if(codeint > 4 || codeint <= 0){
printf("\nPlease enter correct employee\'s paycode!\n\n");
continue;
}else if(codeint == 1){
printf("%s\'s pay for this week (RM): 500.00\n\n", name);
}else if(codeint == 2){
printf("Enter hours work this week: ");
fgets(hw, 5, stdin);
hwint=atoi(hw);
if(hwint > 12){
hwint -= 12;
salary += 500;
}
if(hwint > 0){
for(int i=0;i < hwint;i++){
salary += 100;
}
}
printf("%s\'s pay for this week (RM): %d\n\n", name, salary);
}else if(codeint == 3){
printf("Enter %s\'s this week sales (RM): ", name);
scanf("%f",&weekmoney);
printf("%s\'s pay for this week (RM): %.1f\n", name, (((5.7/100)*weekmoney)+250));
}
while(true){
printf("Do you wish to continue? (Y = Yes, N = No): ");
cl=getchar();
getchar();
if(tolower(cl) == 'y'){
break;
}else if(tolower(cl) == 'n'){
cd=false;
break;
}else{
printf("\nPlease enter correct value!\n\n");
continue;
}
}
printf("\n");
}
}
这是问题和解释。
如果我的代码运行通过这部分代码
printf("Enter %s\'s this week sales (RM): ", name);
scanf("%f",&weekmoney);
printf("%s\'s pay for this week (RM): %.1f\n", name, (((5.7/100)*weekmoney)+250));
这段代码在这里
cl=getchar();
getchar();
if(tolower(cl) == 'y'){
break;
}else if(tolower(cl) == 'n'){
cd=false;
break;
}else{
printf("\nPlease enter correct value!\n\n");
continue;
}
会出错,但如果我的代码没有通过问题部分,它运行良好。我试图找到解决方案 + 调试了将近一个小时,但仍然没有找到解决我的问题的正确解决方案。