c#流程控制

c#分支语句

csharp 复制代码
namespace ConsoleApp1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入学生成绩");
            string s=Console.ReadLine();
            int a=int.Parse(s);//将字符类型强制转换为int类型
            if (a >= 90)
            { 
                Console.WriteLine("成绩优秀");
            }
            else
            {
                Console.WriteLine("成绩一般");
            }
      
        }
    }
}
csharp 复制代码
namespace ConsoleApp1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入一个数");
            int x=Convert.ToInt32(Console.ReadLine());
            Console.WriteLine("请输入运算类型");
            char z=Convert.ToChar(Console.ReadLine());
            Console.WriteLine("请输入另一个数字");
            int y=Convert.ToInt32(Console.ReadLine());

            switch (z)
            {
                case '+':
                    Console.WriteLine("计算结果{0}",x+y);
                    break;
                case '-':
                    Console.WriteLine("计算结果是{0},x-y");
                    break;
                case '*':
                    Console.WriteLine("计算结果是{0}", x * y);
                    break;
                default:
                    Console.WriteLine("不认识计算类型");
                    break;
            }       

        }
    }
}

循环语句

while 循环

csharp 复制代码
namespace ConsoleApp1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            int a = 10;  //定义一个局部变量
            while (a>0)
            {
                Console.WriteLine("第{0}个 hello world",a);
                a = a - 1;
            }
        }
    }
}

for 循环

csharp 复制代码
namespace ConsoleApp1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            string[] a=new string[3] ;
            for (int i=0;i<3;i++)
            {
                Console.WriteLine("请输入字符");
                a[i] = Console.ReadLine();
            }
            Console.WriteLine(a);
            for (int i=0;i<3; i++)
            {
                Console.WriteLine(a[i]);
            }

        }
    }
}
csharp 复制代码
namespace ConsoleApp1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //foreach 用于遍历集合中所有元素
            string[] name = new string[6]; //定义一个字符串数组
            //for 循环来给数组进行赋值
            for (int i = 0;i < name.Length; i++)
            {
                Console.WriteLine("请输入第{0}个学生姓名",i);
                name[i] = Console.ReadLine();
            }

            //foreach来输出字符串数组元素
            foreach (string a in name)
            {
                Console.WriteLine("{0}", name.Length);
                Console.WriteLine("{0}", a);
            }
            int name_lenth = name.Length;
            //逆序输出
            while(name_lenth > 0)
            {
                Console.WriteLine(name[name_lenth-1]);
                name_lenth--;
            }
        }
    }
}
相关推荐
hez20102 小时前
Runtime Async - 步入高性能异步时代
c#·.net·.net core·clr
mudtools16 小时前
.NET驾驭Word之力:玩转文本与格式
c#·.net
唐青枫19 小时前
C#.NET 数据库开发提速秘籍:SqlSugar 实战详解
c#·.net
mudtools1 天前
.NET驾驭Word之力:理解Word对象模型核心 (Application, Document, Range)
c#·.net
侃侃_天下2 天前
最终的信号类
开发语言·c++·算法
echoarts2 天前
Rayon Rust中的数据并行库入门教程
开发语言·其他·算法·rust
Aomnitrix2 天前
知识管理新范式——cpolar+Wiki.js打造企业级分布式知识库
开发语言·javascript·分布式
大飞pkz2 天前
【设计模式】C#反射实现抽象工厂模式
设计模式·c#·抽象工厂模式·c#反射·c#反射实现抽象工厂模式
每天回答3个问题2 天前
UE5C++编译遇到MSB3073
开发语言·c++·ue5
伍哥的传说2 天前
Vite Plugin PWA – 零配置构建现代渐进式Web应用
开发语言·前端·javascript·web app·pwa·service worker·workbox