1. 程式人生 > >C#程式設計教程程式設計題(一)

C#程式設計教程程式設計題(一)

(1)設計一個程式,輸出所有的水仙花數。所謂水仙花數,是指一個三位整數,其各位數字的立方等於該數的本身。

程式碼如下:

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

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

            int a,b,c;
            for (int num = 100; num <= 999; num++)
            {
                a = num / 100;
                b = num / 10 % 10;
                c = num % 10;
                if (a*a*a+b*b*b+c*c*c==num)
                    Console.WriteLine(num);
            }
               
            Console.ReadKey();
        }
    }
}


執行結果:

(2)判斷s所指的字串是否是“迴文”

程式碼如下:

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

namespace Program
{
    class Program
    {
        static void Main(string[] args)
        {
            
            string  s= Console.ReadLine();
            char[] b = s.ToCharArray();
            int len=s.Length;
            int n = 0;
            for (int i = 0; i <= len / 2; i++)
            {
                if (b[i] != b[len - 1 - i])
                {
                    Console.WriteLine("字串"+s+"不是迴文");
                    n = 1;
                    break;
                }
            }
           if (n==0)
               Console.WriteLine("字串" + s + "是迴文");
            Console.ReadKey();
        }
    }
}


執行結果:

(3)設計一個程式,輸入10個數存入陣列中,求最大值、最小值和平均值。

程式碼如下:

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

namespace Program
{
    class Program
    {
        static void Main(string[] args)
        {
            
            string[] a = Console.ReadLine().Split(' '); 
            int[] b = new int[10];
            for (int i = 0; i < a.Length; i++)
            {
                b[i] = int.Parse(a[i]);
            }
            int sum = 0, max = b[0], min = b[0];
            for (int i = 0; i < a.Length; i++)
            {
                sum += b[i];
                if (max < b[i])
                {
                    max = b[i];
                }
                if (min > b[i])
                {
                    min = b[i];
                }
            }
            double avg = (double)sum / b.Length;
            Console.WriteLine("最大值、最小值、平均分依次是{0},{1},{2}",max,min, avg);
            Console.ReadKey();
        }
    }
}



執行結果:

(4)編寫程式,輸入一個整數,將其各位數字顛倒順序後輸出。

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

namespace Program
{
    class Program
    {
        static void Main(string[] args)
        {
            string s=Console.ReadLine();
            int num = Convert.ToInt32(s);
            int[] a = new int[s.Length];
            int i = 0;
            while (num!=0)
            {
                a[i++] = num % 10;
                num /= 10;
            }
            for (i = 0; i < s.Length; i++)
            {
                Console.Write(a[i]);
            }
            Console.ReadKey();
        }
    }
}


執行結果: