1. c語言編寫注冊與登錄的程序
希望對你有所幫助
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
#define N 100
struct user
{
int user_id;
char user_name[19];//最大18位
char password[13];//最大13位
char like[255];
char sign[255];
};
/*
* 驗證用戶名長度是否合法
*/
int length_user_name(char *p)
{
int l;
l=strlen(p);
if(l>18||l<1)
{
return 0;
}
else
return l;
}
/*
* 判斷用戶名是否有效
*/
int valid_user_name(char *p)
{
int i=0;
int len = strlen(p);
if((*p >= 'a' && *p <= 'z') || (*p >= 'A' && *p <='Z')) //判斷首字元是不是字母
{
for(i = 0; i < len; i++)
{
if(!(p[i] == '_' || (p[i] >= 'a' && p[i] <= 'z') || (p[i] >= 'A' && p[i] <='Z')
||(p[i] >='0' && p[i] <= '9'))) //判斷後面字元是否有效
return 0;
}
return 1;
}
else
return 0;
}
/*
* 判斷用戶名是否有效
*/
int is_username_valid(char *p)
{
if((*p >= 'a' && *p <= 'z') || (*p >= 'A' && *p <='Z'))
{
p++;
while(*p)
{
if(!(isalpha(*p) || *p == '_' || isdigit(*p)))
return 0;
p++;
}
return 1;
}
else
{
return 0;
}
}
/*
* 密碼長度有效性驗證
*/
int length_password(char *p)
{
int len;
len = strlen(p);
if(len<6||len>12)
{
return 0;
}
else
return len;
}
/*
* 密碼的有效性驗證
*/
int is_password_valid(char *p)
{
int i=0;
for(;*p != '\0'; p++)
{
if(!( (*p >= 'a' && *p <= 'z') || (*p >= 'A' && *p <='Z')
||(*p >='0' && *p <= '9'))) //判斷字元是否有效
return 0;
}
return 1;
}
int two_password_valid(char *p1,char*p2)
{
if(strcmp(p1,p2)==0)
return 1;
else
return 0;
}
/*
* 完成注冊功能
*/
int user_register(struct user *ptr_user,int size)
{
char password[13];
char repassword[13];
if(size==N)
{
puts("注冊人數以滿!");
return 0;
}
printf("請輸入注冊姓名:");
fflush(stdin);
gets(ptr_user[size].user_name);
if(!(length_user_name(ptr_user[size].user_name)&&valid_user_name(ptr_user[size].user_name)))
{
printf("您輸入的姓名無效,用戶名在1-18之間,首字元為字母,後面必須為字母,數字或下劃線!!!");
return 0;
}
printf("請輸入注冊密碼:");
fflush(stdin);
gets(password);
printf("請再次輸入注冊密碼:");
fflush(stdin);
gets(repassword);
if(!two_password_valid(password,repassword))
{
printf("\n兩次輸入的密碼不一致!");
return 0;
}
else
{
strcpy(ptr_user[size].password,password);
}
if(!(length_password(ptr_user[size].password)&&is_password_valid(ptr_user[size].password)))
{
printf("您輸入的密碼無效,密碼應在6-12之間,密碼只能包含字母和數字!!!");
return 0;
}
printf("請輸入您的愛好:");
fflush(stdin);
gets(ptr_user[size].like);
printf("請輸入您的個性簽名:");
fflush(stdin);
gets(ptr_user[size].sign);
printf("您的編號為:%d,這將是您的登陸帳號.",ptr_user[size].user_id=10000+size);
return 1;
}
/*
* 如果登陸成功則返回第i+1個用戶的信息,否則返回0
*/
int is_my_user(struct user *p,int size)
{
int i;
int zhanghu;
char mima[15];
printf("請輸入您的帳號: ");
scanf("%d",&zhanghu);
fflush(stdin);
printf("請輸入您的密碼: ");
gets(mima);
for(i=0;i<size;i++)
{
if((zhanghu == p[i].user_id)&&(strcmp(mima,p[i].password)==0))
{
return i + 1;
}
}
return 0;
}
void display_user(struct user u)
{
printf("\n你的帳號是:%d",u.user_id);
printf("\n你注冊姓名是:%s",u.user_name);
printf("\n你的愛好:%s",u.like);
printf("\n你的個性簽名:%s",u.sign);
}
void update_password(struct user *ptr_user,int size)
{
char mima1[13],mima2[13];
int i = is_my_user(ptr_user,size);
if(i)
{
i--;
}
else
{
printf("\n帳號密碼不存在!");
return;
}
printf("請輸入新密碼: ");
scanf("%s",mima1);
printf("請再次輸入新密碼: ");
scanf("%s",mima2);
if(two_password_valid(mima1,mima2) && length_password(mima1) && is_password_valid(mima1))
{
strcpy(ptr_user[i].password,mima1);//完成新舊密碼的調換
printf("\n您的的密碼修改成功!");
}
else
printf("\您的密碼修改失敗!");
}
//顯示菜單
int show_menu()
{
int choice;
printf("\n1.注冊");
printf("\n2.登陸");
printf("\n3.修改密碼");
printf("\n4.退出");
printf("\n請選擇1-4\n");
scanf("%d",&choice);
return choice;
}
int main()
{
struct user our_users[N];
int count = 0;
int current_user;
while(1)
{
switch(show_menu())
{
case 1:
if(user_register(our_users,count))
{
count++;
printf("\n注冊成功!");
}
break;
//注冊
case 2:
if((current_user = is_my_user(our_users,count)))
{
printf("\n登陸成功!");
display_user(our_users[current_user - 1]);
}
else
printf("\n登陸失敗!");
break;
//登陸
case 3:
update_password(our_users,count);
break;
//修改密碼
case 4:
exit(1);
break;
//退出
default:
printf("請正確輸入");
}
}
return 0;
}
2. c語言用戶注冊代碼
C語言編程實現用戶的注冊和登錄
#include "stdafx.h"
#include "string.h"
#define n 20
void zhuce();
void denglu();
char yhm[n],mm[n];
int main(int argc, char* argv[])
{
int i;
printf("-----------\n1.注冊\n2.登陸\n3.繼續\n0.退出\n");
scanf("%d",&i);
switch(i)
{case 0: break;
case 1 : zhuce();break;
case 2: denglu();break;
}
return 0;
}
void zhuce( )
{char temp1[n],temp2[n],temp3[n],yhmtmp[n];
printf("輸入用戶名\n");
fflush(stdin);//清空緩存
gets(yhmtmp);
printf("輸入密碼\n");
fflush(stdin);
gets(temp1);
printf("輸入密碼確認\n");
fflush(stdin);
gets(temp2);
if(!strcmp(temp1,temp2))
{strcpy(mm,temp1);
printf("注冊成功\n");
}
else
{printf("輸入密碼確認\n");
gets(temp3);
if(!strcmp(temp1,temp3))
{strcpy(mm,temp1);
printf("注冊成功\n");
}
else
printf("注冊失敗\n");
}
}
void denglu( )
{
char s1[n],s2[n];
printf("輸入用戶名\n");
fflush(stdin);
gets(s1);
printf("輸入密碼\n");
fflush(stdin);
gets(s2);
if((strcmp(s1,yhm))&&(strcmp(s2,mm)))
printf("登陸成功\n");
}
3. 求C語言編寫的用戶登錄程序
#include<stdio.h>
#include<string.h>
main()
{
charname[]="admin",pass[]="888";
charpname[15]={0},ppass[15]={0};
printf("pleaseinputname:");
scanf("%s",pname);
printf("pleaseinputpassword:");
scanf("%s",ppass);
if(strcmp(name,pname)!=0||strcmp(pass,ppass)!=0)
{
printf("nameorpasswordwrong! ");
}else
{
printf("welcome! ");
//你自己要進入的函數
}
}
4. C語言編程實現用戶的注冊和登錄 求代碼啊
模擬用戶注冊和登陸可以用文件來保存用戶名和密碼。注冊就是向文件里寫,用if判斷兩次密碼是否一致。連續三次,可以有一個變數,每次輸入加一,變數大於三就提示登陸不成功。用戶名不對,那你就把你輸入的用戶名和文件里的用戶名是否一致。
5. C語言編寫用戶登錄程序
艾達的小刀
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
/*隨機碼產生函數*/
void RandomCode (char Rcode[])
{
int i;
srand ((unsigned int)time(NULL));
for (i = 0; i < 3; ++i)
Rcode[i] = rand()%10 + '0';
Rcode[i] = '\0';
}
/*登陸函數,判斷信息是否匹配,若匹配返回1,否則返回0*/
int LandedApp (char *password[], char Rcode[])
{
char name[10] = {0};
char pword[10] = {0};
char rcode[4] = {0};
printf ("用戶名 : ");
gets (name);
printf ("密碼 : ");
gets (pword);
printf ("隨機碼 : ");
gets (rcode);
if (strcmp (name, password[0]) != 0 || strcmp (pword, password[1]) != 0 || strcmp (rcode, Rcode) != 0)
return 0;
else
return 1;
}
int main ()
{
char * password[2] = {"admin", "admin123"}; //用戶名和密碼
char rc[4] = {0}; //隨機碼
int count = 3; //可輸入次數
puts ("請輸入用戶名,密碼和隨機碼:");
while (count)
{
RandomCode (rc);
printf ("隨機碼 : %s\n", rc);
if (LandedApp(password, rc) != 0)
break;
--count;
if (count != 0)
puts ("錯誤的用戶名或密碼或隨機碼,請重新輸入: ");
}
if (count != 0)
puts ("\n成功登陸!");
else
puts ("\n登錄失敗 !");
return 0;
}
艾達的小刀
6. C語言用戶登錄
艾達的小刀
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
/*隨機碼產生函數*/
void RandomCode (char Rcode[])
{
int i;
srand ((unsigned int)time(NULL));
for (i = 0; i < 3; ++i)
Rcode[i] = rand()%10 + '0';
Rcode[i] = '\0';
}
/*登陸函數,判斷信息是否匹配,若匹配返回1,否則返回0*/
int LandedApp (char *password[], char Rcode[])
{
char name[10] = {0};
char pword[10] = {0};
char rcode[4] = {0};
printf ("用戶名 : ");
gets (name);
printf ("密碼 : ");
gets (pword);
printf ("隨機碼 : ");
gets (rcode);
if (strcmp (name, password[0]) != 0 || strcmp (pword, password[1]) != 0 || strcmp (rcode, Rcode) != 0)
return 0;
else
return 1;
}
int main ()
{
char * password[2] = {"admin", "admin123"}; //用戶名和密碼
char rc[4] = {0}; //隨機碼
int count = 3; //可輸入次數
puts ("請輸入用戶名,密碼和隨機碼:");
while (count)
{
RandomCode (rc);
printf ("隨機碼 : %s\n", rc);
if (LandedApp(password, rc) != 0)
break;
--count;
if (count != 0)
puts ("錯誤的用戶名或密碼或隨機碼,請重新輸入: ");
}
if (count != 0)
puts ("\n成功登陸!");
else
puts ("\n登錄失敗 !");
return 0;
}
艾達的小刀
是否可以解決您的問題?
7. c語言編寫用戶登錄程序
代碼如下:
#include<stdio.h>
#pragma warning(disable:4996)
#include<string.h>
int main()
{
int i = 0;
char password[10] = { 0 };
printf("請輸入密碼:");
while (i < 3)
{
scanf("%s", password);
printf(" ");
if (strcmp(password, "972816") == 0)
{
printf("登錄成功 ");
break;
}
else
{
i++;
if (i != 3)
printf("再輸入一次");
}
}
if (i == 3)
printf("密碼錯誤三次退出登錄界面 ");
system("pause");
return 0;
(7)c語言用戶登錄代碼擴展閱讀:
#include後面有兩種方式,<>;和""前者先在標准庫中查找,查找不到在path中查找。後者為文件路徑,若直接是文件名則在項目根目錄下查找。
引用方法:#include<stdio.h>
注意事項:在TC2.0中,允許不引用此頭文件而直接調用其中的函數,但這種做法是不標準的。也不建議這樣做。以避免出現在其他IDE中無法編譯或執行的問題。
8. C語言 一個登錄驗證代碼怎樣寫
無非是讓用戶輸入,判斷輸入的合法性.包括帳戶名和密碼校驗,和平時的比較是一樣的.要安全的話就得費心了
9. 用C語言編的用戶登錄系統
輸入密碼時顯示*的效果可以用下面這個程序得到:#include<stdio.h>
main(){
int i=0;
char password[50];
printf("Input Password:");
while((password[i++]=getch())!=13)putchar('*'); //主代碼
password[i]='\0';
printf("\n\npassword is :%s\n",password);
}
10. 用c語言編寫用戶登錄的程序
你好!
這是一個控制台登陸界面,可以滿足你的要求嗎