所以,在這個程序中,我們必須計算數組中的字母字符?
A.計算一個字符數組中發現的每個字母的數量和這些計數存儲在一個整數數組
我理解這一部分,但它說,我們必須使用混淆了我的ASCII值。
這是爲參考文件:
" A frog walks into a bank and asks the teller, Miss Pattywack
for a loan. Miss Pattywack tells the frog,
"you must have collateral for the loan".
The frog pulls out of his pouch his porcelain people collection
and offers them as collateral.
Miss Pattywack looks at the figurines and tells the frog that
the collection is not acceptable.
The bank manager overhears the conversation and yells to the
teller - "It's a nick nack Pattywack, give the frog a loan!"
使用for循環來檢查字符數組
i的每個字符。使用toupper來處理這封信,所以你只處理大寫字母
ii。如果字符是字母表中的字母,在字符的ASCII值減去65
1)65的位置遞增整數數組是字母的ASCII值,「A」
(1)如果該字符是要增加的字符A,65-65 = 0的位置A
(2)如果該字符是C,67-65 = 2位置要增加字符C
我有這個至今:
void CountAlphabetCharacters(char chArray[MAX_CHARACTERS], int lengthOfArray)
{
int index;
for(index = 0; index <= lengthOfArray; index++)
{
chArray[index] = toupper(chArray[index]);
static_cast<int>(index);
}
}
這就是我的全部,因爲這就是我理解。我的意思是,我明白你是如何得到ASCII值的,但我對如何真正爲此做for循環感到失落。就像我假設你看到文件中的字符,但我不明白你是如何得到你的價值,並繼續前進的。我不知道我是否有道理,但我希望我能做,有人可以幫助!提前致謝。
所以你基本上是問如何從文件中讀取文本到字符數組?您可以檢查[C++ I/O庫](http://en.cppreference.com/w/cpp/io)的功能。 –
我已經將文本文件讀入數組了。我需要重新計算文件中字母表中每個字母出現的次數。但是,使用ASCII碼值65 – letsgetkrejci
然後我不明白你在問什麼: -/... –