我有我的代碼的第一部分相當完整,我得到了其餘的主旨,我只是不知道如何把它放在一起。這裏是第一部分C#如何平均數組輸入
using System;
namespace ConsoleApplication1
{
class Program
{
public class AccountInfo
{
public int Number { get; set; }
public double Balance { get; set; }
public string LastName { get; set; }
}
static void Main(string[] args)
{
List<AccountInfo> accounts = new List<AccountInfo>();
for (int index = 1; index < 6; index++)
{
AccountInfo acc = new AccountInfo();
Console.Write("Enter account number: " + index.ToString() + ": ");
acc.Number = int.Parse(Console.ReadLine());
Console.Write("Enter the account balance: ");
acc.Balance = double.Parse(Console.ReadLine());
Console.Write("Enter the account holder last name: ");
acc.LastName = Console.ReadLine();
accounts.Add(acc);
}
}
}
}
第二部分是問用戶他們想要與陣列
進入一個或一個搜索賬號 輸入AB或B做什麼平均 輸入x或X退出程序賬目
我可以使用像這樣的搜索部分:
public void search Accounts()
{
for(int x = 0; x < validValues.Lenth; ++x)
{
if(acctsearched == validValues[x])
{
isValidItem = true;
acctNumber = Number[x];
}
}
而且我可以用一個帶有bool true/false的while循環來關閉。
我不知道如何獲得平均餘額。我不斷地收到錯誤,如「不能隱式地改變int [] int」
任何幫助,這將非常讚賞。
http://www.albahari.com/nutshell/linqbridge.aspx – MusiGenesis 2011-04-03 01:54:19
@Musi:太好了!沒有意識到他們已經達到了這個程度。阿爾巴哈里人很棒。 – 2011-04-03 01:57:02
@MusiGenesis - OMG有史以來最好的鏈接 – Pandincus 2011-04-03 01:58:56