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--;
            }
        }
    }
}
相关推荐
VBA633710 分钟前
如何学习VBA:换一种思路思考问题,利用数据库实现数据处理自动化
开发语言
0_0梅伊阁诗人22 分钟前
Django ORM 模型
开发语言·数据库·笔记·python·oracle·django
林夕忆梦_猫44 分钟前
初识C++
开发语言·c++
lightqjx1 小时前
【C++】string类 模拟实现
java·开发语言·c++
只_只1 小时前
B1013 PAT乙级JAVA题解 数素数
java·开发语言
minji...1 小时前
C++ list的模拟实现
开发语言·c++·list
千册1 小时前
pyside6 的pdf显示测试 -- 01
开发语言·python·pdf
axban2 小时前
QT M/V架构开发实战:M/V架构的初步认识
开发语言·数据库·qt
Starshime2 小时前
【C语言】变量和常量
c语言·开发语言
晨非辰2 小时前
#C语言——刷题攻略:牛客编程入门训练(十):攻克 循环控制(二),轻松拿捏!
c语言·开发语言·经验分享·学习·visual studio