/* (程序頭部注釋開始)
* 程序的版權和版本聲明部分
* Copyright (c) 2011, 煙台大學計算機學院學生
* All rights reserved.
* 文件名稱:編寫一個控制台應用。輸入一組整數,輸出所有的奇數。
* 作 者: 雷恆鑫
* 完成日期:2012 年 09 月 15 日
* 版 本 號:V1.0
* 對任務及求解方法的描述部分
* 輸入描述:
* 問題描述:
* 程序輸出:
* 程序頭部的注釋結束
*/
[java]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace The_experiment__of__three__week
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("請您輸入一組整數,中間用逗號隔開:");
String str = Console.ReadLine();
String[] s = str.Split(',');
int[] b = new int[s.Length];
for (int i = 0; i < s.Length; ++i)
{
b[i] = int.Parse(s[i]);
}
Myclass c = new Myclass();
int x = c.get_number(b);
Console.WriteLine("你輸入的整數中奇數的個數為:{0}個",x);
Console.ReadKey();
}
}
class Myclass
{
public int get_number(params int[] a)
{
int i = 0;
for (int j = 0; j < a.Length; ++j)
{
if (a[j] % 2!=0)
{
++i;
}
}
return i;
}
}
}
運行結果: