程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#語法練習(3): 運算符(1)

C#語法練習(3): 運算符(1)

編輯:關於C語言

基本: . () [] x++ x-- new typeof checked unchecked -> ::
一元: + - ! ~ ++x --x (T)x True False & sizeof
乘除: * / %
加減: + -
移位: << >>
關系: < > <= >= is as
相等: == !=
邏輯: & ^ |
條件: && ||
賦值: = += -= *= /= %= &= |= ^= <<= >>=
選擇: ?: ??
其他: =>

整數 / 整數 = 整數

using System;

class MyClass
{
   static void Main()
   {
     double d;
     d = 14 / 4;
     Console.WriteLine(d);  //3
     d = 14 / 4.0;
     Console.WriteLine(d);  //3.5
     d = 14.0 / 4.0;
     Console.WriteLine(d);  //3.5
     d = 14.0 / 4;
     Console.WriteLine(d);  //3.5

     Console.WriteLine();

     float f;
     f = 14 / 4;
     Console.WriteLine(f);  //3
     f = (float)(14.0 / 4.0); /* 默認返回 double, 因而需要轉換 */
     Console.WriteLine(f);  //3.5

     Console.WriteLine();

     int i;
     i = 14 / 4;
     Console.WriteLine(i);  //3
     i = (int)(14.0 / 4.0);
     Console.WriteLine(i);  //3
     i = 14 % 4;
     Console.WriteLine(i);  //2

     Console.ReadKey();
   }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved