> 有关“期望值”的文章
  • C# FOR循环

    C# FOR循环

    using System;namespace demo_01{ class Program { static void Main(string[] args) { //声明一个变量a 初始值为0 int a = 0; //循环10...

    05-28 44 663 文档中心
  • C#While循环

    C#While循环

    using System;namespace demo_01{ class Program { static void Main(string[] args) { //声明两个简单整数变量a,b int a = 1; int b = ...

    05-28 59 532 文档中心
  • C#关系运算

    C#关系运算

    using System;namespace demo_01{ class Program { static void Main(string[] args) { //声明两个简单整数变量a,b int a = 1; int b = ...

    05-28 58 241 文档中心
  • C#逻辑运算

    C#逻辑运算

    using System;namespace demo_01{ class Program { static void Main(string[] args) { //声明三个布尔变量 真 假 真 bool a = true; b...

    05-28 37 109 文档中心
  • C#自增自减运算

    C#自增自减运算

    using System;namespace demo_01{ class Program { static void Main(string[] args) { //声明两个变量 int num1 = 2; int num2 = 2; ...

    05-28 32 430 文档中心
  • C#取模运算

    C#取模运算

    using System;namespace demo_01{ class Program { static void Main(string[] args) { //声明两个变量 int num1 = 4; int num2 = 2; ...

    05-28 40 930 文档中心