namespace _007_數(shù)學運算符 {
? ? class Program {
? ? ? ? static void Main(string[] args)
? ? ? ? {
? ? ? ? ? ? //int num1 = 45;
? ? ? ? ? ? //int num2 = 13;
? ? ? ? ? ? ////int res1;
? ? ? ? ? ? ////res1 = num1 + num2;
? ? ? ? ? ? //int res1 = num1 + num2;
? ? ? ? ? ? //int res2 = num1 - num2;
? ? ? ? ? ? //int res3 = num1*num2;
? ? ? ? ? ? //int res4 = num1/num2;
? ? ? ? ? ? //int res5 = num1%num2;
? ? ? ? ? ? //double res = 123.4%2;
? ? ? ? ? ? //int num3 = 45;
? ? ? ? ? ? //double num4 = 3.1;
? ? ? ? ? ? //double res6 = num3 + num4;
? ? ? ? ? ? ////加減乘除求余兩邊的操作數(shù)都是整數(shù)的話湘捎,結(jié)果還是整數(shù),不過不能被整除的話侄非,自動略去小數(shù)部分
? ? ? ? ? ? //Console.WriteLine("加法的結(jié)果:{0} \n 減法的結(jié)果:{1} \n乘法的結(jié)果:{2}\n除法的結(jié)果:{3}\n求余運算的結(jié)果:{4}",res1,res2,res3,res4,res5);
? ? ? ? ? ? //Console.WriteLine(res);
? ? ? ? ? ? //關(guān)于加法運算符更多的使用
? ? ? ? ? ? //1.字符串相加 用來連接兩個字符串 返回一個字符串
? ? ? ? ? ? //string str1 = "123adb";
? ? ? ? ? ? //string str2 = "泰課在線www.taikr.com";
? ? ? ? ? ? //string str = str1 + str2;
? ? ? ? ? ? //Console.WriteLine(str);
? ? ? ? ? ? //2,當一個字符串跟一個數(shù)字相加的話片拍,首先把數(shù)字轉(zhuǎn)變成字符串浪读,然后連接起來 結(jié)果是字符串
? ? ? ? ? ? //string str1 = "123";
? ? ? ? ? ? //int num = 456;
? ? ? ? ? ? //string res = str1 + num;
? ? ? ? ? ? //Console.WriteLine(res);
? ? ? ? ? ? Console.ReadKey();
? ? ? ? }
? ? }
}