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--;
            }
        }
    }
}
相关推荐
kkeeper~3 小时前
0基础C语言积跬步之深入理解指针(5下)
c语言·开发语言
一直不明飞行3 小时前
Java的equals(),hashCode()应该在什么时候重写
java·开发语言·jvm
盲敲代码的阿豪4 小时前
Python 入门基础教程(爬虫前置版)
开发语言·爬虫·python
曹牧4 小时前
C# WinForms应用程序中展示JSON内容
c#
basketball6164 小时前
C++ 构造函数完全指南:从入门到进阶
java·开发语言·c++
互联科技报4 小时前
2026超融合选型:Top5品牌与市场格局解读
开发语言·perl
weixin199701080164 小时前
[特殊字符] 智能数据采集:数字化转型的“数据石油勘探队”(附Python实战源码)
开发语言·python
想唱rap5 小时前
IO多路转接之poll
服务器·开发语言·数据库·c++
@杰克成5 小时前
Java学习30
java·开发语言·学习
三品吉他手会点灯5 小时前
C语言学习笔记 - 40.数据类型 - scanf函数的编程规范与非法输入处理
c语言·开发语言·笔记·学习