Tag Archives: سیستم اطلاعات دانش آموزان سی پلاس

پروژه سیستم اطلاعات دانش آموزان سی پلاس

  عنوان پروژه  پروژه سیستم اطلاعات دانش آموزان سی پلاس نوع فایل فرمت سورس زبان سی پلاس پلاس CPP , EXE پیش نمایش از سورس کد پروژه #include <iostream.h> #include <conio.h> #include <fstream.h> #include <process.h> #include <stdio.h> #include <string.h> #include <iomanip.h> #define fname "student.dat" struct student { unsigned int id; short stid; char name; char family; char number; char address; }; void showinfo(char) { textbackground(BLACK); clrscr(); textcolor(RED); gotoxy(1,1); cprintf(message); textcolor(GREEN); gotoxy(1,4); cout<<"Student Number : "; cprintf(" "); textbackground(BLACK); textcolor(GREEN); gotoxy(1,6); cout<<"Name : "; cprintf(" "); textbackground(BLACK); textcolor(GREEN); gotoxy(1,8); cprintf("Family : "); textcolor(WHITE);textbackground(BLUE);cprintf(" "); textbackground(BLACK); textcolor(GREEN); gotoxy(1,10); cprintf("id : "); textcolor(WHITE);textbackground(BLUE);cprintf(" "); textbackground(BLACK); textcolor(GREEN); gotoxy(1,12); cprintf("Number : "); textcolor(WHITE);textbackground(BLUE);cprintf(" "); textbackground(BLACK); textcolor(GREEN); gotoxy(1,14); cprintf("Address : "); textcolor(WHITE);textbackground(BLUE);cprintf(" "); } void ...