A. 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;
(1)c好看的登陸界面代碼擴展閱讀:
#include後面有兩種方式,<>;和""前者先在標准庫中查找,查找不到在path中查找。後者為文件路徑,若直接是文件名則在項目根目錄下查找。
引用方法:#include<stdio.h>
注意事項:在TC2.0中,允許不引用此頭文件而直接調用其中的函數,但這種做法是不標準的。也不建議這樣做。以避免出現在其他IDE中無法編譯或執行的問題。
B. c語言編寫密碼登陸界面,成功後 無論填寫什麼信息都是顯示登陸成功是為什麼
#include<stdio.h>
//試試這個程序吧。
intmain()
{
charpassword[128],setedpass[8]="123456";
puts(" 請輸入6位密碼:");
gets(password);
if(0==strcmp(password,setedpass)){
puts("登錄成功!");
}
else{
puts("密碼輸入錯內誤,請重新輸容入");
}
return0;
}
C. c++中MFC的用戶登陸界面怎麼編寫
static int remember=0;寫在頭文件中,...Dlg.h中