didcard.cpp

来自「图书馆管理系统 包括界面、书籍管理、会员管理等内容」· C++ 代码 · 共 29 行

CPP
29
字号
 /********************Function To Issue Duplicate Id Card*********************/
# include"liba.h"
void memdupid()
 {
     window(1,1,80,2);
     textbackground(LIGHTGRAY);
     clrscr();
     textcolor(YELLOW);
     gotoxy(30,1);
     cprintf("Issue Duplicate Id Card");
     window(1,2,80,25);
     textcolor(WHITE);
     textbackground(BLUE);
     clrscr();
     int no,ch;
     printf("\nEnter Membership Id::");
     scanf("%d",&no);
     ch=memcheck(no);
     if(ch==FALSE)
     {
       printf("\n\t No Such Member....."); getch(); return;
     }
     printf("\n\t Duplicate ID Issued....");
     transac1(no,'D');
     textcolor(RED);
     cprintf("\n press any key to return");
     getch();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?