目前分類:TQC+ 物件導向程式認證 C# (27)

瀏覽方式: 標題列表 簡短摘要

參考答案:

using System;

Dino 發表在 痞客邦 留言(0) 人氣()

參考答案:

using System;

Dino 發表在 痞客邦 留言(0) 人氣()

參考答案:

 

Dino 發表在 痞客邦 留言(0) 人氣()

參考答案:

using System;

Dino 發表在 痞客邦 留言(0) 人氣()

參考答案:

using System;

Dino 發表在 痞客邦 留言(0) 人氣()

參考答案:

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

namespace CSD01
{
    class Program
    {
        static void Main(string[] args)
        {
            int total = 0;
            int input=0;

            // TODO
            try
            {
                for (int i = 0; i < 5; i++)
                {
                        Console.Write("請輸入一個1-50的整數>");
                        input = int.Parse(Console.ReadLine());

                        if (!(input >= 1 && input < 50))
                        {
                            Console.WriteLine("輸入數字必須在1-50之間,請重新輸入");
                            i--;continue;
                        }
                    total += input;
                }


                Console.WriteLine("你輸入的5個整數和是" + total);
                Console.WriteLine("你輸入的5個整數其平均是" + total / 5);
                Console.ReadLine();
            }
            catch (Exception e)
            {
                Console.WriteLine("輸入錯誤,請重新輸入");
                Console.ReadLine();
            }

            
        }
    }
}


執行結果:

Dino 發表在 痞客邦 留言(0) 人氣()

參考答案:

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

namespace CSD01
{
    class Program
    {
        static void Main(string[] args)
        {
            int input = 0;

            // TODO
            do{
                Console.Write("請輸入一個1-100的整數>");
                try
                {
                    input = int.Parse(Console.ReadLine());
                    if (input < 1 || input > 100)
                    {
                        Console.WriteLine("輸入數字必須大於等於1且小於等於100");
                        continue;
                    }
                    Console.WriteLine("你輸入的是"+input);
                }catch(Exception e)
                {
                    Console.WriteLine("只能輸入整數");
                    Console.WriteLine("請重新輸入..");
                }

            }while(!(input>=1 && input<=100));

            Console.ReadLine();
        }
    }
}

執行結果:

Dino 發表在 痞客邦 留言(1) 人氣()

«12