码迷,mamicode.com
首页 > 其他好文 > 详细

项目1:交换机后台管理(2)

时间:2019-02-21 23:21:21      阅读:327      评论:0      收藏:0      [点我收藏+]

标签:data   void   use   sizeof   window   stdio.h   int   file   lin   

#include<stdio.h>
#include<windows.h>
#include<string.h>
int main(void){
 char name[32];
 char password[32];
 FILE*data;
 char name_tmp[32];
 char password_tmp[32];
 char line[64];
 char * ret;
 
 data=fopen("C:\\text.txt","r");
 
 if(!data){
  printf("文本打开失败!");
  return 1;
 }
 while(1){
 
 printf("请输入用户名:");
 scanf("%s",&name);
 printf("请输入密码:");
 scanf("%s",&password);
 
 
 while(1){
  ret=fgets(line,sizeof(line),data);
  if(!strcmp(name,name_tmp)&&!strcmp(password,password_tmp)){
   break;
  }
 
 sscanf(line,"%s%s",name_tmp,password_tmp);
 if(!strcmp(name,name_tmp)&&!strcmp(password,password_tmp)){
  break;
  }
 }
 if(ret){
  break;
 }else{
  printf("\n");
  system("pause");
  system("cls");
  
  fseek(data,0,SEEK_SET);
  }
 }
 system("cls");
 printf("---交换机后台管理---\n");
 return 0;
 }

项目1:交换机后台管理(2)

标签:data   void   use   sizeof   window   stdio.h   int   file   lin   

原文地址:https://www.cnblogs.com/fzhiyaoy/p/10415768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!