• C#基础语法--运算符


    1.普通算数运算符

    1.什么是运算符:对常量和变量进行操作的符号称为运算符

    + - * / %

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. using System.Threading.Tasks;
    6. namespace _02_My_Second_Demo
    7. {
    8. internal class Program
    9. {
    10. static void Main(string[] args)
    11. {
    12. int n1 = 10;
    13. int n2 = 20;
    14. int result=n1 + n2;
    15. Console.WriteLine(result);
    16. Console.ReadKey();
    17. //某学生三门课成绩为,语文:90,数学:80,英语:67,编程求和总分数,平均分
    18. int chinses = 90;
    19. int math = 80;
    20. int english = 67;
    21. Console.WriteLine("总成绩是{0},平均成绩是{1}",chinses+math+english,(chinses + math + english)/3);
    22. Console.ReadKey() ;
    23. //编程计算半径为5的圆的面试和周长
    24. int r = 5;
    25. double area = 3.14 * r * r;
    26. double perimeter = 2 * 3.14 * r;
    27. Console.WriteLine("面积是{0},周长是{1}",area,perimeter);
    28. Console.ReadKey() ;
    29. }
    30. }
    31. }

    2.算数运算符(++--)

    1.++:分为前++和后++,不管是前++还是后++,最终的结果都是给这个变量加一。

    区别:表达式中,如果是前++,则先给这个变量加一,然后带着这个加一后的值去参与运算。如果是后++,则先拿原值参与运算,运算完之后,再将这个变量自身加一。

    2.--:分为前--和后--,不管是前--还是后--,最终的结果都是给这个变量减一。

    区别:同上

    3.对于像加加或者减减这样只需要一个操作数就能完成的运算,称之为一元运算符。

    + - * / % 对于这些需要两个或者两个以上才能完成运算的操作符,我们称之为二元运算符。

    注意:一元运算符的优先级高于二元运算符。

               如果一个表达式中,既有一元运算符,又有二元运算符,我们首先计算一元运算符。

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. using System.Threading.Tasks;
    6. namespace _02_My_Second_Demo
    7. {
    8. internal class Program
    9. {
    10. static void Main(string[] args)
    11. {
    12. int number = 10;
    13. number++;
    14. ++number;
    15. --number;
    16. Console.WriteLine(number);
    17. Console.ReadKey();
    18. int num = 10;
    19. //int result = 10 + num++;
    20. int result = 10 + num;
    21. num++;
    22. //int result = 10 + ++num;
    23. num++;
    24. int result2 = 10 + num;
    25. Console.WriteLine(num);
    26. Console.WriteLine(result);
    27. Console.ReadKey();
    28. int a = 5;
    29. int b = a++ + ++a * 2 + --a + a++;
    30. // 5+7*2+6+6
    31. Console.WriteLine(a); //7
    32. Console.WriteLine(b); //31
    33. Console.ReadKey();
    34. }
    35. }
    36. }

    3.关系运算符

    >

    <

    >=

    <=

    ==

    !=

    关系运算符是用来描述两个事务之间的关系

    由关系运算符连接的表达式称之为关系表达式

    4.bool类型

    在C#中,我们用bool类型描述对或者错

    bool类型的值只有两个 一个true 一个false

    5.逻辑运算符

    && 逻辑与

    ||    逻辑或

    !  逻辑非

    由逻辑运算符连接的表达式叫做逻辑表达式

    逻辑与的优先级高于逻辑或

    逻辑运算符两边放的一般是关系表达式或者bool类型的值。

    5>3&&true        

    3>5||false

    !表达式

    逻辑表达式的结果同样也是bool类型

    1. using System.Text;
    2. using System.Threading.Tasks;
    3. namespace _02_My_Second_Demo
    4. {
    5. internal class Program
    6. {
    7. static void Main(string[] args)
    8. {
    9. //让用户输入张三的语文和数学成绩,输出以下判断是否正确,正确输出True,错误输出False
    10. //1)张三的语文和数学成绩都大于90分
    11. Console.WriteLine("张三,请输入你的语文成绩");
    12. int chinese=Convert.ToInt32(Console.ReadLine());
    13. Console.WriteLine("张三,请输入你的数学成绩");
    14. int math = Convert.ToInt32(Console.ReadLine());
    15. bool b = chinese > 90 && math > 90;
    16. Console.WriteLine(b);
    17. Console.ReadKey();
    18. //2)语文和数学成绩有一门大于90分
    19. bool b1 = chinese > 90 || math > 90;
    20. Console.WriteLine(b);
    21. Console.ReadKey();
    22. }
    23. }
    24. }

    6.复合赋值运算符

    int number=10

    +=:

    number+=20;

    number=number+20;

    -=:

    number-=5;

    number=number-5;

    *=

    /=

    &=

    7.判断闰年

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. using System.Threading.Tasks;
    6. namespace _02_My_Second_Demo
    7. {
    8. internal class Program
    9. {
    10. static void Main(string[] args)
    11. {
    12. //年份能够被400整除.(2000)
    13. //年份能够被4整除但不能被100整除
    14. //逻辑与的优先级高于逻辑或
    15. Console.WriteLine("请输入要判断的年份");
    16. int year = Convert.ToInt32(Console.ReadLine());
    17. bool b = (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0);
    18. Console.WriteLine(b);
    19. Console.ReadKey();
    20. }
    21. }
    22. }

  • 相关阅读:
    kafka生产者源码精华总结
    仿真科普|CAE技术赋能无人机 低空经济蓄势起飞
    实战Netty!基于私有协议,怎样快速开发网络通信服务?
    分析 | 多视角下图情热点分析与真题分析
    Espresso Test 1: 前言
    常见变量命名方法:PascalCase, camelCase, hungarian_notation, kebab-case
    慕思股份深交所上市:靠床垫和“洋老头”走红 市值224亿
    YOLOv5-理论部分
    【skynet】skynet入口解析
    小学生python练习3--跳伞防鸟小游戏
  • 原文地址:https://blog.csdn.net/weixin_62520626/article/details/126832180