㈠ c語言課程設計題目,徵求代碼-學生考勤系統設計
不懂得這些東西啊!
㈡ c語言程序設計。考勤管理系統。
給你發 分給嗎 我發到你郵箱了
㈢ 學生考勤管理系統C語言代碼
#include "stdio.h"
#include "string.h"
int main()
{
char name[50][8];
int grade[20][4];
int zm=0;
int ze=0;
int zc=0;
int zz=0;
int n;
int i;
printf("Please input the nummber of students:");
scanf("%d",&n);
for(i=0;i<n;i++)
{
printf("Please input the %dth student's name:",i+1);
scanf("%s",&name[i]);
printf("Please input the %dth student's Math score:");
scanf("%d",&grade[i][0]);
printf("Please input the %dth student's English score:");
scanf("%d",&grade[i][1]);
printf("Please input the %dth student's Computer score:");
scanf("%d",&grade[i][2]);
grade[i][3]=grade[i][0]+grade[i][1]+grade[i][2];
}
printf("Name Math Enlish Computer total\n");
for(i=0;i<n;i++)
printf("%s\t%d\t%d\t%d\t %d\t\n",name[i],grade[i][0],grade[i][1],grade[i][2],grade[i][3]);
return 0;
}
㈣ 學生考勤系統c設計
我想沒有人會無聊到專門為你寫一個。有的話是自己已經寫好的,不過一般人都不會輕易給出去,都是有版權的,怎麼說都是勞動成果。你要是真不願自己寫的話可以找類似的改,網上很多,要麼上威客,花錢買。
㈤ c語言程序設計學生考勤系統
是位運算,先把a,b轉化成二進制,然後位相或,有1出1,無1出0 比如 a=5 b=2 5的二進製表示是101 2的二進製表示是10 那麼101|10=111 111十進製表示是7 所以a|b=7 如果a=3 b=2 那麼a|b 結果是 11|10=11 a|b=3
㈥ C語言的班級考勤系統
/*學生考勤結構體*/
typedef struct{
int no; //學號
char cl[8]; //班級
char name[8]; //姓名
char sex[3]; //性別
char date[13]; //日期
int flag; //出勤情況
int num; //出勤次數
int scr; //出勤分數
}stu;
/*函數聲明*/
int menu();//主目錄
void cnum();
Print();
/*定義全局變數*/
stu cla[51]; //只設定1個班,按需要自己設定數組大小
/*主函數*/
main()
{
int flag=1;
while(flag)
{
switch(menu)
case 1:
cnum();
case 2:
Print();
case 0:
flag=0;
}
printf("歡迎下次使用");
getch();
}
int menu() //製作歡迎菜單
{
int n;
printf(" 歡迎登陸考勤系統\n");
printf("1、點名(記錄學生出勤情況)\n");
printf("2、查看出勤結果(查看學生出勤得分)\n");
printf("0、退出\n");
printf("請選擇:");
scanf("%d",&n);
return n;
}
cnum()
{
int flag=1; //標記
int i=1;
int cl;
printf("請輸入上課班級編號:");
scanf("cl");
while(flag)
{
printf("\n開始點名!");
printf("\n請輸入來到的同學學號(以0號結束):");//為了方便計算學號跟數組下標一致,零號空去
scanf("%d",&flag);
if(flag!=0)
{
cla[i].no=flag;
cla[i].cl=cl;
·
·
·//輸入數據在此省略
printf("輸入該同學有沒有到(0代表沒有到,1代表到):");
scanf("%d",&flag);
·
·
·
}
}
}
Print()
{
//列印所有str裡面的信息
}
大概思路是這樣,自己看這要求修改吧!因為我都不清楚你的要求
㈦ 怎麼用C語言編寫員工考勤系統
如果是要被使用者操作的系統, 使用pure C是比較麻煩的, 尤其是在視窗GUI處理上. (除非你要使用的是文字模式, 即便如此, 排版及頁面控制也是件麻煩事).
我個人會建議使用VC, 簡化GUI處理, 可將關注重心放在系統功能本身.
如果是課業或專題, 那就需要自行考量各部分的重要比率, 將某些部分進行簡化, 加強重點的關注.