您好,登錄后才能下訂單哦!
異常捕獲:
try
{
有可能出現錯誤的代碼寫在這里
}
catch
{
出錯后的處理
}
上面的程序如何運行:
如果try中的代碼沒有出錯,則程序正常運行
try中的代碼,不會執行catch中的代碼;否則
直接跳到catch中執行代碼!
class Program { static void Main(string[] args) { try { Console.WriteLine("請輸入你的姓名!"); string name = Console.ReadLine(); Console.WriteLine("請輸入你的語文成績:"); int chinese = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("請輸入你的數學成績:"); int maths = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("請輸入你的英語成績:"); int english = Convert.ToInt32(Console.ReadLine()); int sum = chinese + maths + english; double average =1.0* (chinese + maths + english) / 3; Console.WriteLine("{0}!你的總分數為{1},平均分為{2}", name, sum, average); } catch { Console.WriteLine("你輸入的數據有誤,請重新輸入:"); } Console.ReadKey(); } }
class Program { static void Main(string[] args) { Console.WriteLine("請輸入你要計算的天數:"); int number = Convert.ToInt32(Console.ReadLine()); int week = number / 7; int day = number % 7; Console.WriteLine("{0}天是{1}周零{2}天",number,week,day); } }
class Program { static void Main(string[] args) { Console.WriteLine("請輸入你要計算的時間(秒):"); int second = Convert.ToInt32(Console.ReadLine()); int day = second / (24 * 3600); int hour = second / 3600; int minute = second / 60; int second_1 = second % 60; Console.WriteLine("{0}秒是{1}天{2}小時{3}分{4}秒",second,day,hour,minute,second_1); } }
運算符
1.自加自減:
int a = 1; a++; // a = a + 1 int b = a; a--; // a = a - 1 int c = a; Console.WriteLine("a++ : {0}", b); Console.WriteLine("a-- : {0}", c);
2.復合運算符:
在C#中,能夠改變變量中值的有=/++/--
int a = 10; a = a + 10; //將a 的值賦予 a(10) + 10 //運算完成后a = 20 Console.WriteLine(" a=a+10; a={0}",a); a = 10; //在將a還原回10 a += 10; //等同于 a = a + 10; 將a 的值賦予 a(10) + 10 //運算完成后a還是等于 20 Console.WriteLine(" a+= 10; a={0}", a);
3.關系運算符(比較運算符)
4.布爾(bool)類型:
5.邏輯運算符:
邏輯運算符有一個或兩個布爾操作數,并返回一個布爾結果。邏輯運算符允許你合并多個布爾表達式,以構成其他布爾表達式。
邏輯運算符包括||、&&和^,分別對應于OR、AND、XOR。
邏輯求反運算符(!)有時也稱為NOT運算符,它的作用是反轉一個bool數據類型的值,這是一個一元運算符,只需要一個操作數。
1.OR運算符(||)
||運算符對兩個布爾表達式進行求值,如果其中任何一個為true,就返回true
2.AND運算符(&&)
布爾AND運算符&&要求在兩個操作數求值都為true的前提下才返回true。任何一個操作數為false,就會返回false。
3.XOR運算符(^)
^符號是異或運算符。若應用于兩個布爾操作數,那么只有在兩個操作數中僅有一個為true的前提下,XOR運算符才會返回true。
與布爾AND和OR不同,布爾XOR運算符不支持短路運算。 它始終都要檢查兩個操作數,因為除非確切地知道兩個操作數的值,否則不能判定最終結果。
class Program { static void Main(string[] args) { Console.WriteLine("請用戶輸入所要判斷的年份:"); int year = Convert.ToInt32(Console.ReadLine()); bool result = (year / 400) == 0 || (year / 4 == 0 && year / 100 != 0); Console.WriteLine("用戶輸入的年份如果是潤年則輸出TRUE,不是潤年則FLASE.結果是:{0}",result); Console.ReadKey(); } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。