C语言实战105例源码

源代码在线查看: 86.c

软件大小: 449 K
上传用户: yondyanyu
关键词: 105 C语言 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				#include 
				#include 
				int PassInput()
				{
					struct date today;
					getdate(&today);  /*把系统当前日期存入today所指向的date结构中*/
					/*当输入口令不对时,反复进行以下循环*/
					do{
						clrscr();     /*调用清屏函数*/
						puts("-------------------------------------------");
						puts("*      Welcome to use this  program!      *");
						puts("-------------------------------------------");
						printf(" Please input the password:\n");
					}
					while (atoi((char *) getpass("password:")) != today.da_mon * 100 + today.da_day);
					return 1;
				}
				void main(void)
				{
					int i;
					i=PassInput();
					if(i==1)
					{
						/*如果输入正确,则显示正确信息*/
						printf(" Password Correct!\n");
						printf(" You can use the program....\n");
					}
					getchar();
				}
							

相关资源