c 基礎練習之if結構

2021-09-06 10:30:22 字數 1599 閱讀 2021

using system;

using system.collections.generic;

using system.linq;

using system.text;

namespace if語句

else

console.readkey();

//2如果張三的語文成績大於90並且**成績大於80,或者語文成績等於100並且**成績大於70,則獎勵100元。

console.writeline("請輸入張三的語文成績");

int chinese = convert.toint32(console.readline());

console.writeline("請輸入張三的**成績");

int yinyue = convert.toint32(console.readline());

bool cj; 

if (cj = chinese > 90 && yinyue > 80 || chinese == 100 && yinyue > 70)

console.readkey();

///3對結業考試成績測評(要求使用者輸入乙個具體成績0-100分,程式根據成績顯示乙個等級)

(考慮用if還是用if-else)

成績》=90   a

90> 成績》=80   b

80> 成績》=70   c

70> 成績》=60   d

成績<60   e

console.writeline("請您輸入乙個具體的成績");

int cj = convert.toint32(console.readline());

if (cj >= 90)

if (cj < 90 && cj >= 80)

if (cj < 80 && cj >= 70)

if (cj < 70 && cj >= 60)

if  (cj<60)

console.readkey();

///4.要求使用者輸入兩個數a和b,如果a能夠被b整除或者a加b大於100,則輸出a否則輸出b。

console.writeline("請您輸入乙個數字");

int a = convert.toint32(console.readline());

console.writeline("請您輸入乙個數字");

int b = convert.toint32(console.readline());

if (a % b == 0 || a + b > 100)

else

console.readkey();

//6.讓使用者輸入使用者名稱和密碼,如果使用者名為admin,密碼為mypass,則提示登入成功。

console.writeline("請您輸入密碼:");

int password = convert.toint32(console.readline());

if (password == 888888)

if (password != 888888)

if (password == 888888)

console.readkey();}}

}

C語音基礎練習(五)(結構體)

struct student struct student studl 關於結構體型別變數賦值正確的是 a a studl.id 1001 studl.name tom b id 1001 studl.name tom c studl.id 1001 studl.name tom d studl.i...

Python新手學習基礎之迴圈結構練習

有幾個母音字母?有乙個字串 i learn python from maya 我們想要查詢出它裡面的母音字母 aeiou 其實是找出這幾個小寫字母 並統計出其母音字元的個數。這個時候我們就可以結合條件語句和迴圈語句對字串進行處理了。sentence是乙個字串,你需要去統計這個字串的母音字母數 sen...

c 基礎練習

問題 f 土豪學長算成績 題目描述 給協會裡的同學排成績對於土豪學長來說總是乙個很麻煩的事情,因為土豪學長不會使用excel 所以每次他都是手工排序的。現在協會的人數越來越多,手工排序變的不現實了,他希望你能夠幫他寫乙個程式給同學們拍名次。考試的科目有語文,數學,英語,物理,化學,生物。首先按照總分...