text C#如果是其他例子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text C#如果是其他例子相关的知识,希望对你有一定的参考价值。

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

namespace If_Else_Selection
{
    class Program
    {
        static void Main(string[] args)
        {
            string inputvalue;
            Console.WriteLine("Sup Brah, Enter your totally narly mark below. I'll give you your grade in return");
            inputvalue = Console.ReadLine();
            int input = int.Parse(inputvalue);

            if (input < 39)
            {
                Console.WriteLine("You got an 'F' you bum!");
                Console.ReadKey();
            }
            else if (input <= 49)
            {
                Console.WriteLine("you got a 'D'... not a horrendous grade");
                Console.ReadKey();
            }
            else if (input <= 59)
            {
                Console.WriteLine("you got a 'C'... not bad... ");
                Console.ReadKey();
            }
            else if (input <= 69)
            {
                Console.WriteLine("you got a 'B'... nice job... still... room for improvement");
                Console.ReadKey();
            }
            else
            {
                Console.WriteLine("ha!... you're an over achiever. nobody likes you");
                Console.ReadKey();
            }
        }
    }
}

以上是关于text C#如果是其他例子的主要内容,如果未能解决你的问题,请参考以下文章

使用jQuery的ajax调用action的例子

JavaScript的type属性等于text/html 例子

c语言,定义一个函数,没做过多的说明,那么此函数能被其他源文件调用么?

text 使用C语言中的文件的其他有用功能

什么是绝对路径?什么是相对路径?举个例子

text git hook在`git pull`之后运行命令如果指定的文件被更改。在这个例子中它用于运行`npm install`如果package.json ch