#include <stdio.h>
#include <stdlib.h>
#define N 2
struct customer
{
int accno ;
char name[30] ;
float balance ;
}e,m;
struct trans
{
int accno;
char trans_type ;
float amount ;
}e2,m1;
int main()
{
int k,i,p;
char another='y',n;
FILE *fp,*fr,*tp;
//fp=fopen("customer.exe","rb");
//fr=fopen("transaction.exe","wb");
while(1){
printf("\t\tCustomer Transactions:\n");
printf("\t\t*********************\n\n\n");
printf("\t1: Add customer information:\n\n");
printf("\t2: Add transaction information:\n\n");
printf("\t3: List customer information:\n\n");
printf("\t4: List transaction information:\n\n");
printf("\t5: Perform transaction:\n\n");
printf("\t0: Exit:\n\n\n");
printf("your choice ");
scanf("%d",&p);
switch (p){
case 1:
fp=fopen("customer.exe","wb");
while(another=='y')
{
printf("\nEnter account number,Enter name,Enter balance");
scanf("%d %s %f",&e.accno,&e.name,&e.balance);
fwrite(&e,sizeof(e),1,fp);
printf("Enter another y/n?");
scanf(" %c",&another);
}
fclose(fp);
break;
case 2:
fr=fopen("transaction.exe","wb");
while(another=='y'){
printf("\nEnter account number,Enter transaction type(w/d),Enter Amount");
scanf("%d %c %f",&e2.accno,&e2.trans_type,&e2.amount);
fwrite(&e2,sizeof(e2),1,fr);
printf("\n\nEnter another y/n?");
scanf(" %c",&another);
}
fclose(fr);
break;
case 3:
fp=fopen("customer.exe","rb");
printf("all account holders are\n\n");
while(fread(&e,sizeof(e),1,fp)==1){
printf("%d %s %f\n\n",e.accno,e.name,e.balance);
}
fclose(fp);
break;
case 4:
fr=fopen("transaction.exe","rb");
printf("\n\nEnter account number\n\n");
scanf("%d",&m1.accno);
while(fread(&e2,sizeof(e2),1,fr)==1){
printf("%d %c %f\n\n",e2.accno,e2.trans_type,e2.amount);
}
fclose(fr);
break;
case 0:
exit(1);
}
}
return 0;
}
嘿伙计们,
所以我正在解决这个问题,我被卡在开关循环中
所以发生的事情是我可以自由选择任何情况只有当我编译并运行时,但如果我在任何情况下,特别是1或2,我不能回到1或2。
例如假设我输入p作为1宾果我在案例1中,但现在在案例1执行后如果我现在输入2没有发生任何事情。卡在循环中,但疯狂的是,我仍然可以自由选择其他情况。(除了1/2)
答案 0 :(得分:1)
当您退出case-1
时,您输入another
为'n'
。然后在再次考虑开关案例之前,你永远不会重置它。这就是问题所在。
在while(1)
块内 - 在开头创建作业another = 'y'
。这基本上会使两个while
循环的条件成立。
while(1){
...
another = 'y'; <----
scanf("%d",&p);
switch (p){
case 1:
fp=fopen("customer.exe","wb");
while(another=='y')
{
这将使您的代码进入while
或case-1
中的case-2
块。
除了所有这些一般建议:检查所用函数的返回值 - 例如scanf
,fopen
等。它将使您免于因可能发生的错误情况这些功能失败。
并在启用警告的情况下编译代码。 gcc -Wall -Werror progname.c
。
将字符串作为输入时,应限制scanf
的输入。例如,建议使用(如您所知,name
中将有30个字符,包括\0
)。
if( scanf("%29s",e.name) != 1){
fprintf(stderr,"Error in input using scanf\n");
exit(1);
}