C#-基本语法应用编程

1、从一个数组中选择最大最小值

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入5个数字:");
            int[] arr = new int[5];
            int max = int.MinValue;
            int min = int.MaxValue;
            for (int i = 0; i < 5; ++i)
            {
                arr[i] = Convert.ToInt16(Console.ReadLine());
                if (max < arr[i])
                    max = arr[i];
                if (min > arr[i])
                    min = arr[i];
            }

            Console.WriteLine("最大的数是:" + max);
            Console.WriteLine("最小的数是:" + min);
            Console.ReadKey();

        }
    }
}
image.png

2、九九乘法表

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp2
{
    class Program
    {
        static void Main(string[] args)
        {
            for (int i = 1; i < 10; ++i)
            {
                for (int j = 1; j <= i; ++j)
                {
                    if (i * j > 9)
                        Console.Write("" + i + " * " + j + " = " + i * j + "  ");
                    else
                        Console.Write("" + i + " * " + j + " = " + i * j + "   ");
                }
                Console.WriteLine();
            }
            Console.ReadKey();
        }
    }
}
image.png

3、分别使用for循环和while循环设计一个程序,计算从1加到100的和

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp3
{
    class Program
    {
        static void Main(string[] args)
        {

            int sum = 0;
            for (int i = 1; i <= 100; ++i)
            {
                sum += i;
            }
            Console.WriteLine("for:1+..+100 = " + sum);
            sum = 0;
            int j = 1;
            while (j <= 100)
            {
                sum += j;
                j++;
            }
            Console.WriteLine("while:1+..+100 = " + sum);
            Console.ReadKey();

        }
    }
}
image.png

4、利用数学类提供的平方根方法计算并输出1.0,2.0,3.0,…,10.0的平方根。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp4
{
    class Program
    {
        static void Main(string[] args)
        {
            for (int i = 1; i <= 10; ++i)
            {
                Console.WriteLine(i + "的平方根" + " = " + Math.Sqrt(i));
            }
            Console.ReadKey();

        }
    }
}
image.png

5、随机数方法产生5个1~10(包括1和10)之间的整数。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp5
{
    class Program
    {
        static void Main(string[] args)
        {
            Random ran = new Random();
            for (int i = 1; i <= 5; ++i)
            {
                Console.WriteLine("第" + i + "个随机数是 " + ran.Next(1, 11));
            }
            Console.ReadKey();
        }
    }
}
image.png

6、编程实现:随机产生1~20之间的整数,总共生成1000次,统计其中生成的整数0,1,2,3,... …,20的个数分别是多少,并输出统计结果(每5个数一行)。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp6
{
    class Program
    {
        static void Main(string[] args)
        {
            Random ran = new Random();
            int[] arr = new int[1001];
            for (int i = 1; i <= 1000; ++i)
            {
                arr[ran.Next(1, 21)]++;
            }
            for (int i = 1; i < 10; ++i)
            {
                Console.WriteLine(i + "  出现的次数是: " + arr[i]);
            }
            for (int i = 10; i <= 20; ++i)
            {
                Console.WriteLine(i + " 出现的次数是: " + arr[i]);
            }
            Console.ReadKey();

        }
    }
}
image.png

7、统计从键盘中输入字符串中分别有多少个数字和字母。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp7
{
    class Program
    {
        static void Main(string[] args)
        {
            int letter = 0, digit = 0;
            string s1 = Console.ReadLine();
            foreach (char c in s1)
            {
                if (char.IsLetter(c))
                {
                    letter++;
                    continue;
                }
                if (char.IsDigit(c))
                {
                    digit++;
                    continue;
                }
            }
            Console.WriteLine("字母出现的次数是: " + letter);
            Console.WriteLine("数字出现的次数是: " + digit);
            Console.ReadKey();

        }
    }
}
image.png

8、编写程序,要求用户输入月份号码,然后显示该月的英文名称。例如,如果用户输入2,程序应显示February。要求月的英文名称存于数组中。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp8
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] s = new string[12];
            s[0] = "January"; s[1] = "February"; s[2] = "March"; s[3] = "April";
            s[4] = "May"; s[5] = "June"; s[6] = "July"; s[7] = "August";
            s[8] = "September"; s[9] = "October"; s[10] = "November"; s[11] = "December";
            int i = Convert.ToInt16(Console.ReadLine());
            Console.WriteLine(i + "月份" + "是 " + s[i - 1]);
            Console.ReadKey();
        }
    }
}
image.png

9、请输入一个代表项数的正整数N(N ≤ 100),然后输出1-3+5-7+9-11+……前N项的和。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp9
{
    class Program
    {
        static void Main(string[] args)
        {
            int i = Convert.ToInt16(Console.ReadLine());
            int sum = 0;
            int num = 1;
            for (int j = 1; j <= i; ++j, num += 2)
            {
                if (j % 2 == 0)
                    sum -= num;
                else
                    sum += num;
            }
            Console.WriteLine("前" + i + "项和是 " + sum);
            Console.ReadKey();
        }
    }
}
image.png

10、请编写两个程序,分别通过if语句和switch语句两种方式完成,输入一个成绩,将百分制成绩转换成等级制成绩(A为100~90 ,…, F为不及格)。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp10
{
    class Program
    {
        static void Main(string[] args)
        {
            int i = Convert.ToInt16(Console.ReadLine());
            while (i < 0 || i > 100)
            {
                Console.WriteLine("数错了,再输一遍");
                i = Convert.ToInt16(Console.ReadLine());
            }
            char a = 'F';
            if (i >= 90)
                a = 'A';
            else if (i >= 80)
                a = 'B';
            else if (i >= 70)
                a = 'C';
            else if (i >= 60)
                a = 'D';
            Console.WriteLine(a);
            Console.ReadKey();
        }
    }
}
image.png
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp10_2
{
    class Program
    {
        static void Main(string[] args)
        {
            int i = Convert.ToInt16(Console.ReadLine());
            while (i < 0 || i > 100)
            {
                Console.WriteLine("数错了,再输一遍");
                i = Convert.ToInt16(Console.ReadLine());
            }
            char a = 'F';
            switch (i / 10)
            {
                case 10:
                case 9: a = 'A'; break;
                case 8: a = 'B'; break;
                case 7: a = 'C'; break;
                case 6: a = 'D'; break;
            }

            Console.WriteLine(a);
            Console.ReadKey();

        }
    }
}
image.png

11、读入两个正整数m和n,输出m和n的最小公倍数。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp11
{
    class Program
    {
        static void Main(string[] args)
        {
            int n1 = Convert.ToInt16(Console.ReadLine());
            while (n1 <= 0)
            {
                Console.WriteLine("数错了,再输一遍");
                n1 = Convert.ToInt16(Console.ReadLine());
            }
            int n2 = Convert.ToInt16(Console.ReadLine());
            while (n2 < 0)
            {
                Console.WriteLine("数错了,再输一遍");
                n2 = Convert.ToInt16(Console.ReadLine());
            }
            int min = Math.Min(n1, n2);
            for (int i = Math.Max(n1, n2); i < int.MaxValue; i++)
            {
                if (i % n1 == 0 && i % n2 == 0)
                {
                    Console.WriteLine("最小公倍数是 " + i); Console.ReadKey();
                    return;
                }
            }
            Console.WriteLine("没找到最小公倍数");
            Console.ReadKey();

        }
    }
}
image.png

12、判断一个整数n是否为素数。若是则输出:n是素数;否则输出n不是素数(注:n是具体的值)。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp12
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = Convert.ToInt16(Console.ReadLine());
            while (n < 0)
            {
                Console.WriteLine("请输入正整数,再输一遍");
                n = Convert.ToInt16(Console.ReadLine());
            }
            if (n == 0 || n == 1)
            {
                Console.WriteLine(n + "不是素数"); Console.ReadKey();
                return;
            }
            int MAX = (int)Math.Sqrt(n);
            for (int i = 2; i <= MAX; ++i)
            {
                if (n % i == 0)
                {
                    Console.WriteLine(n + "不是素数"); Console.ReadKey();
                    return;
                }
            }
            Console.WriteLine(n + "是素数!");
            Console.ReadKey();
        }
    }
}
image.png

13、用for循环计算s=1!+2!+3!+…+n!

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp13
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入一个正整数:");
            int n = Convert.ToInt16(Console.ReadLine());
            while (n < 0)
            {
                Console.WriteLine("请输入正整数,再输一遍");
                n = Convert.ToInt16(Console.ReadLine());
            }
            int sum = 0;
            int j = 1;
            for (int i = 1; i <= n; ++i)
            {
                j = j * i;
                sum += j;
            }
            Console.WriteLine("s=1!+2!+3!+…+n!的结果为:"+sum);
            Console.ReadKey();

        }
    }
}
image.png

14、
image.png
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp14
{
    class Program
    {
        static void Main(string[] args)
        {
            double d = 0;
            for (int i = 2; i <= 20; ++i)
            {
                d += Math.Pow(i, i);
            }
            if (double.MaxValue - 0.01 < d)
                Console.WriteLine("越界!!");
            Console.WriteLine(d);
            Console.ReadKey();
        }
    }
}
image.png

15、编写一个程序,打印出以下图形:


image.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,463评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,868评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,213评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,666评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,759评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,725评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,716评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,484评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,928评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,233评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,393评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,073评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,718评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,308评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,538评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,338评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,260评论 2 352

推荐阅读更多精彩内容

  • 有时候生活就是这样 ,时而狂躁时而安静,时而抑郁不堪总在细究生命的意义,又何苦这样折磨自己呢?其实,我也弄不懂,有...
    漾佈阅读 410评论 0 0
  • 有人说 爱一个人就要把相思放下 让心与魂合一 没有相思
    沧海一粟贝阅读 130评论 1 4