using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace if語句
{
class Program
{
static void Main(string[] args)
{
//如果張三的考試成績大於90,那麼爸爸獎勵他100塊錢。
Console.WriteLine("請輸入張三的成績");
int cj = Convert.ToInt32(Console.ReadLine());
if (cj > 90)
{
/ Console.WriteLine("爸爸獎勵100元");
}
else
{
Console.WriteLine("爸爸讓寫總結");
}
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.WriteLine("爸爸獎勵100元");
}
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)
{
Console.WriteLine("A");
}
if (cj < 90 && cj >= 80)
{
Console.WriteLine("B");
}
if (cj < 80 && cj >= 70)
{
Console.WriteLine("C");
}
if (cj < 70 && cj >= 60)
{
Console.WriteLine("D");
}
if (cj<60)
{
Console.WriteLine("E");
}
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)
{c
Console.WriteLine("a");
}
else
{
Console.WriteLine("b");
}
Console.ReadKey();
//6.讓用戶輸入用戶名和密碼,如果用戶名為admin,密碼為mypass,則提示登錄成功。
Console.WriteLine("請您輸入密碼:");
int password = Convert.ToInt32(Console.ReadLine());
if (password == 888888)
{
Console.WriteLine("正確");
}
if (password != 888888)
{
Console.WriteLine("請您重新輸入");
}
if (password == 888888)
{
Console.WriteLine("正確");
}
Console.ReadKey();
}
}
}