C \ # 배열 옮 겨 다 니 기

897 단어 C#백 엔 드
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _1210_    
{
    class Program
    {
        static void Main(string[] args)
        {
            // C# ,    foreach          :
            // C#    -www.baike369.com
            int odd = 0; //   
            int eve = 0; //   
            int[] array = new int[100];
            for (int i = 0; i < array.Length; i++)
            {
                array[i] = i * 5;
            }
            foreach (int j in array)
            {
                if (j % 2 == 0)
                    eve++;
                else
                    odd++;
            }
            Console.WriteLine("   " + odd + " ");
            Console.WriteLine("   " + eve + " ");
            Console.ReadLine();
        }
    }
}

좋은 웹페이지 즐겨찾기