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--;
            }
        }
    }
}
相关推荐
好开心啊没烦恼40 分钟前
Python 数据分析:计算,分组统计1,df.groupby()。听故事学知识点怎么这么容易?
开发语言·python·数据挖掘·数据分析·pandas
lljss20202 小时前
Python11中创建虚拟环境、安装 TensorFlow
开发语言·python·tensorflow
Python×CATIA工业智造5 小时前
Frida RPC高级应用:动态模拟执行Android so文件实战指南
开发语言·python·pycharm
我叫小白菜6 小时前
【Java_EE】单例模式、阻塞队列、线程池、定时器
java·开发语言
狐凄6 小时前
Python实例题:基于 Python 的简单聊天机器人
开发语言·python
weixin_446122467 小时前
JAVA内存区域划分
java·开发语言·redis
悦悦子a啊7 小时前
Python之--基本知识
开发语言·前端·python
QuantumStack8 小时前
【C++ 真题】P1104 生日
开发语言·c++·算法
whoarethenext8 小时前
使用 C++/OpenCV 和 MFCC 构建双重认证智能门禁系统
开发语言·c++·opencv·mfcc
代码的奴隶(艾伦·耶格尔)9 小时前
后端快捷代码
java·开发语言