程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 用C實現一個簡單的口令程序

用C實現一個簡單的口令程序

編輯:關於C語言

#include<stdio.h>
#include<conio.h>
#include<dos.h>
void main(void)
{ struct date today;
struct time now;
getdate(&today);
gettime(&now);
textcolor(WHITE);
textbackground(BLUE);
do { clrscr();
gotoxy(25,10);
printf("today's date is %d-%d-%d",today.da_mon,today.da_day,today.da_year);
gotoxy(28,12);
printf("the time is %2d:%2d:%2d",now.ti_hour,now.ti_min,now.ti_sec);
gotoxy(1,1);
} while(atoi((char*)getpass("password:"))!=today.da_mon+today.da_day+now.ti_hour);
textcolor(WHITE);
textbackground(BLACK);
clrscr();
gotoxy(1,1);
printf(" ");
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved