Browse Source

ConsoleApp1_ConventJero32O\

一个小练习。。。。。。。。
proginn1658481853 1 year ago
parent
commit
4e2d4b097a
1 changed files with 31 additions and 0 deletions
  1. 31 0
      ConsoleApp1_ConventJero32O/Program.cs

+ 31 - 0
ConsoleApp1_ConventJero32O/Program.cs

@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ConsoleApp1_ConventJero32O
+{
+    class Program
+    {
+        private 
+            static int sorce;
+        static void Main(string[] args)
+        {
+            sorce = Convert.ToInt32(Console.ReadLine());
+            if (sorce >= 85)
+            {
+                Console.WriteLine("Good <-A->!!!!.........");
+            }
+            else if (sorce < 60)
+            {
+                Console.WriteLine("you suth come up<-D->!!!!.........");
+            }
+            else
+            {
+                Console.WriteLine("Good Good Study: you will GoUP<-C.or.B->!!!!");
+            }
+            Console.ReadLine();
+        }
+    }
+}