真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

[小白到大牛之路5]交換機后臺管理之權限判斷

項目需求

判斷用戶名和密碼是否正確。

超過10余年行業(yè)經(jīng)驗,技術領先,服務至上的經(jīng)營模式,全靠網(wǎng)絡和口碑獲得客戶,為自己降低成本,也就是為客戶降低成本。到目前業(yè)務范圍包括了:成都網(wǎng)站建設、成都網(wǎng)站制作,成都網(wǎng)站推廣,成都網(wǎng)站優(yōu)化,整體網(wǎng)絡托管,小程序制作,微信開發(fā),App定制開發(fā),同時也可以讓客戶的網(wǎng)站和網(wǎng)絡營銷和我們一樣獲得訂單和生意!

項目實現(xiàn)

#include 

int main(void) {
    // 定義變量,用來表示用戶名和密碼
    //char name;
    char name[32];
    //int password;
    char password[16];

    // 輸入用戶名和密碼
    printf("請輸入用戶名:");
    scanf("%s", name);
    printf("請輸入密碼:");
    scanf("%s", password);

    if (strcmp(name, "admin") == 0 && 
        strcmp(password, "123456") == 0) {
        // 打印功能菜單
        printf("---交換機后臺管理---\n");
        printf("1. 創(chuàng)建賬號\n");
        printf("2. IP管理\n");
        printf("3. 退出\n");
    } else {
        printf("用戶名或密碼錯誤!\n");
    }

    return 0;
}

[小白到大牛之路5] 交換機后臺管理之權限判斷

項目精講

1.字符串的比較運算

可參考c/c++手冊
百度網(wǎng)盤鏈接:https://pan.baidu.com/s/1dZJLwE

使用strcmp函數(shù)

#include
int strcmp( const char str1, const char str2 );

比較規(guī)則:
按順先從前往后比較
同序號的字符按“ASCII”碼值比較
直到遇到對應字符不等或者字符串結束

返回值:
str1 < str2時, 返回值< 0(有些編譯器返回 -1)
str1 > str2時, 返回值> 0(有些編譯器返回 1)

str1 等于 str2時, 返回值== 0

demo

#include 

int main(void) {
    char name[32];
    int ret;

    printf("請輸入您的姓名:");
    scanf("%s", name);

    ret = strcmp(name, "Rock");
    printf("ret=%d\n", ret);

    return 0;
}

使用strncmp函數(shù)

#include
int strncmp( const char str1, const char str2, size_t count );
最多比較字符串str1和str2的前count個字符。

demo

#include 
#include 

int main(void) {
    char name1[32] = "Rock";
    char name2[32];
    int ret;

    fgets(name2, sizeof(name2), stdin); //輸入Rock

    ret = strcmp(name1, name2);
    printf("ret=%d\n", ret);

    //
    ret = strncmp(name1, name2, strlen(name1));
    printf("ret=%d\n", ret);

    return 0;
}

### 2.其他數(shù)據(jù)類型的比較運算
char, int, float, double數(shù)據(jù)的比較都使用:
大于: >
大于或等于: >=
小于: <
小于或等于: <=
不等于: !=
等于: == (注意:不是 = )

比較運算的結果:(邏輯值)
結果為“真”: 1
結果為“假”: 0

#include 

int main(void) {
    int a = 100;
    int b = 200;
    int ret;

    ret = a > b;
    printf("ret=%d\n", ret);   //ret=0

    ret = a < b;
    printf("ret=%d\n", ret);   //ret=1
    return 0;
}

比較運算的使用場合:
用于“條件判斷”

3.C語言的布爾類型

C語言主要標準

[小白到大牛之路5] 交換機后臺管理之權限判斷

C89標準中的邏輯值

使用0和1表示邏輯值
[小白到大牛之路5] 交換機后臺管理之權限判斷
dome

#include 

int main(void) {
    int a = 100;
    int b = 200;
    int  ret;     //或者 char ret; 

    ret = a > b;
    if (ret) {
        printf("a > b\n");
    } else {
        printf("a <= b\n");
    }

    return 0;
}

C99標準中的邏輯值(兼容C89)

使用bool類型表示邏輯類型
使用 true 表示真
使用 false表示假

注意:需要包含頭文件 stdbool.h

#include 
#include 

int main(void) {
    int a = 100;
    int b = 200;
    //int ret;     
    bool  ret;

    ret = a > b;
    if (ret) {  //即: if (ret == true) 
        printf("a > b\n");
    } else {
        printf("a <= b\n");
    }

    //true和false是"bool類型的常量"
    printf("true=%d\n", true);
    printf("false=%d\n", false);

    return 0;
}

注意:大部分C項目使用的是C89標準中的邏輯值表示方式。




4.邏輯運算

邏輯與 &&
[小白到大牛之路5] 交換機后臺管理之權限判斷
都為真,邏輯與才是真
只要有一個是假, 邏輯與就是假

相當于“而且”

應用場景:
當需要兩個條件都滿足時,就使用邏輯與

特別注意:
條件1 && 條件2
當條件1為真時,才去判斷條件2
當條件1為假時,就不再判斷條件2

#include 

int main(void) {
    int x = 0;
    int a;

    printf("請輸入一個整數(shù):");
    scanf("%d", &a);

    if ((a > 5) && ((x=100) > 90)) {
        printf("OK\n");
    }

    printf("x=%d\n", x);

    return 0;
}

### 邏輯或 ||
[小白到大牛之路5] 交換機后臺管理之權限判斷
都為假,邏輯與才是真
只要有一個是真, 邏輯與就是真

相當于“或者”

應用場景:
只需要滿足任意一個條件時,就使用邏輯或

特別注意:
條件1 || 條件2
當條件1為真時,才不再判斷條件2
當條件1為假時,才判斷條件2

#include 

int main(void) {
    int x = 0;
    int a;

    printf("請輸入一個整數(shù):");
    scanf("%d", &a);

    if ((a > 5) || ((x=100) > 90)) {
        printf("OK\n");
    }

    printf("x=%d\n", x);

    return 0;
}

邏輯非 !

[小白到大牛之路5] 交換機后臺管理之權限判斷

相當于“不”

應用場景:
當需要不滿足某條件時,就使用邏輯或

特別注意:
邏輯非,只對一個條件進行運算!
是一種“單目運算符”

#include 

int main(void) {
    int age;

    printf("請輸入您的年齡: ");
    scanf("%d", &age);

    //特別注意要使用()
    //if ( ! age >= 30) 將導致非預期結果, !會和age結合
    if ( !(age >= 30) ) { 
        printf("您還不到30\n");
    } else {
        printf("您已過而立之年!\n");
    }

    return 0;
}

5.其它運算操作

算術運算
[小白到大牛之路5] 交換機后臺管理之權限判斷

賦值運算

x = 10; //把x的值設置為10, 把10寫到變量x中。
x = 10 + a;

左邊必須是變量
“優(yōu)先級”很低,只比 ","(逗號元素符)高。
x = (3 + 5); //先計算"+", 再計算“=”

復合賦值運算

x += 10; // x = x + 10
x -= 10; // x = x - 10

類的還有: *= , /=, %= 等。

位運算

在后續(xù)章節(jié)中學習。
自增自減運算
[小白到大牛之路5] 交換機后臺管理之權限判斷
[小白到大牛之路5] 交換機后臺管理之權限判斷
注意:
1.只能對變量做++和--運算,不能對變量和表達式做++和--運算
5++; //ERROR
(3+x)++; //ERRO
2.建議盡量使用前綴自增(自減),以避免錯誤。

逗號運算符
優(yōu)先級最低。

#include 

int main(void) {
    int x;

    // 先計算 x = 3+5,  再計算3*5
    x = 3+5, 3*5, 10/5;
    printf("x=%d\n", x);  //x=8

    //取最后一個表達式的值,作為整個“逗號表達式”的值
    x = (3+5, 3*5, 10/5);  
    printf("x=%d\n", x); //x=2

    return x;
}

三目運算符

條件 ? 表達式1 :表達式2

如果條件為真,就取表達式1作為整個表達式的值
如果條件為假,就取表達式2作為整個表達式的值

#include 

int main(void) {
    int year;
    int holiday;

    printf("請輸入您的工作年限: ");
    scanf("%d", &year);

    holiday = year > 10 ? 20 : 5; 
    printf("您的年假有%d天\n", holiday);

    return 0;
}

6.類型轉(zhuǎn)換

類型轉(zhuǎn)換的概念
為什么需要“類型轉(zhuǎn)換”
參與運算的兩個操作數(shù)的數(shù)據(jù)類型,必須相同!

類型轉(zhuǎn)換的類別:
1.隱式類型轉(zhuǎn)換
自動完成轉(zhuǎn)換!
1)算數(shù)轉(zhuǎn)換
2)賦值轉(zhuǎn)換
3)輸出轉(zhuǎn)換

2.強制類型轉(zhuǎn)化

算數(shù)轉(zhuǎn)化
(+,-,*,/,%)
char , int, long, long long, float, double

賦值轉(zhuǎn)換

#include 

int main(void) {
    int x; 
    x = 3.14 * 10;  // 31.4 轉(zhuǎn)換為int類型,因為賦值符號的左邊變量的類型是int類型

    printf("%d\n", x);

    return 0;
}

輸出轉(zhuǎn)換

#include 

int main(void) {
    printf("%c\n", 255+50);  //305  ->  49 ('1');
    printf("%d\n", 255+50);
    return 0;
}

int類型數(shù)據(jù), 按照%f格式輸出時,將得到錯誤的輸出
float(或double) 類型數(shù)據(jù),按照%d格式輸出時,將得到錯誤的輸出
強制類型轉(zhuǎn)化

#include 

int main(void) {
    int x = 257 + 100;
    printf("%d\n", x);

    x = (char)257 + 100;
    printf("%d\n", x);

    return 0;
}

7.運算符優(yōu)先級

一共有15個級別!

不需強制記憶,只需要掌握以下常用的優(yōu)先級:

最高優(yōu)先級:( )和[ ]
倒數(shù)第二低優(yōu)先級:賦值和復合賦值(=, +=, -= ...)
最低優(yōu)先級:逗號表達式

! > 算術運算符 > 關系運算符 > && > || > 賦值運算符

x = ! 3 + 4 < 5 && 6 > 7 || 8 > 7;
等效于:
x = ((!3 + 4 < 5) && (6 > 7)) || (8 > 7);

8.if條件判斷語句

demo1
``
#include

int main(void) {
int salary;

printf("請輸入你的期望年薪:");
scanf("%d", &salary);

if (salary >= 200000) {
    printf("你需要精通C/C++開發(fā)\n");
} 

printf("OK\n");

return 0;

}

**demo2**

#include

int main(void) {
char answer[16];

printf("你有房嗎? ");
scanf("%s", answer);
if (strcmp(answer, "yes") == 0) {
    printf("OK");
} else {
    printf("你是一個好人!\n");
}

return 0;

}


**demo3**

#include

int main(void) {
char answer[16];

printf("有房嗎? ");
scanf("%s", answer);
if (strcmp(answer, "yes") == 0) {
    printf("有房,不錯\n");
} else if (printf("有車嗎? ") && 
    scanf("%s", answer) && 
    strcmp(answer, "yes")==0) {
    printf("有車,還行\(zhòng)n");
} else if (printf("有病嗎? ") && 
    scanf("%s", answer) && 
    strcmp(answer, "no")==0) {
    printf("健康就好!\n");
} else {
    printf("你是一個好人!\n");
}

return 0;

}


流程圖
![](/upload/otherpic50/a3634703907fc6eeb629700c168dcb37.png)
![](/upload/otherpic50/3dcc12cf3c78f89037e4e42214ee2c88.png)
**項目練習**
1.獨立實現(xiàn)該項目。
2.讓用戶輸入一個成績,然后輸出這個成績的等級。
   0-59:  不及格
   60-79: 及格
   80-89: 良好
   90-100: 優(yōu)秀
   其它:非法成績

當前標題:[小白到大牛之路5]交換機后臺管理之權限判斷
本文地址:http://weahome.cn/article/gdjpoo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部