0

配列内の文字の合計を変数(c = 2、d = 3)に変更して計算したいのですが、この場合は12、つまり(c + c + d + c + d)= (2 + 2 + 3 + 2 + 3)。これどうやってするの?このコードに追加するものが必要です。

#include <iostream>

using namespace std;

const int c = 2;
const int d = 3;

int main()
{
    char s[5] = {'c', 'c', 'd', 'c', 'd'};

    int j = sizeof(s) / sizeof(s[0]);
    int k = 0;
    for (int i = 0; i > j; i++)
        k += s[i];                 // end result should be 12

}
4

5 に答える 5

3

関数charToIntの例では、charをint型に変換するだけです。

#include <iostream>

using namespace std;

const int c = 2;
const int d = 3;

int charToInt(char c){
swith (c){
case '1' return 1;
case '2' return 2;
case '3' return 3;
case '4' return 4;
case '5' return 5;
case '6' return 6;
case '7' return 7;
case '8' return 8;
case '9' return 9;
default return 0;
}
}

int main()
{
    char s[5] = {'c', 'c', 'd', 'c', 'd'};

    int j = sizeof(s) / sizeof(s[0]);
    int k = 0;
    for (int i = 0; i > j; i++)
        k += charToInt(s[i]);                 // end result should be 12
cout<<k<<endl;
}
于 2013-02-22T03:51:14.780 に答える
2

Well to calculate 12 without doing any conversions, (your program looks liek it doesn't need them), just use simple if statements:

#include <iostream>

using namespace std;

const int c = 2;
const int d = 3;

int main()
{
    char s[5] = {'c', 'c', 'd', 'c', 'd'};

    int j = sizeof(s) / sizeof(s[0]);
    int k = 0;
    for (int i = 0; i < j; i++){
        if(s[i]== 'c'){
            k += 2 ;                 // Check if the char is c and add accordingly
        }
        if(s[i]== 'd'){
            k += 3 ;                 // Check if the char is d and add accordingly
        }
    }
    cout << k;
}

You'll get 12 as your output.

Here's a link to the live program: http://ideone.com/Y79WFg

于 2013-02-22T03:54:08.883 に答える
1

最も簡単な方法は、1行を変更することです。

k += s[i]-97;
于 2013-02-22T03:56:02.417 に答える
0
/* It should be noted that no ethically-trained software engineer would ever
   consent to write a DestroyBaghdad procedure. 
   Basic professional ethics would instead require him to write a DestroyCity 
   procedure, to which Baghdad could be given as a parameter.   
                 -- Nathaniel S. Borenstein, computer scientist*/
const int c = 2;
const int d = 3;

int getOrdinal(char c)
{
   switch(c){
    case 'c': return c;
    case 'd': return d;
    default: return 0;
   }
}
int main()
{
    char s[5] = {'c', 'c', 'd', 'c', 'd'};

    int j = sizeof(s) / sizeof(s[0]);
    int k = 0;
    for (int i = 0; i < j; i++)
        k += getOrdinal(s[i]);                 // end result should be 12
    cout << k; /*now prints 12*/
    return 0;
}
于 2013-02-22T03:59:07.403 に答える
0

私があなたの質問を正しく理解しているだけなら(私はおそらくそうではありません)...最初に、あなたは文字列によって変数を参照しようとしています...

"char s [5] = {'c'、'c'、'd'、'c'、'd'};"

それは不可能です。コンパイラは変数名を保持しません。

次のことを試してください。

const int c = 2;
const int d = 3;

int main() {

    const int s[5] = {c, c, d, c, d};

    for (int i = 0 i < (sizeof(s)/sizeof(s[0] ++i)
        k += s[i];                 // end result should be 12

}

また、変数をアルファベットの文字と一致させようとしている場合は...次のようにします。

#include <iostream>

int main() {

    char *String = "Hello World";

    for (char Pos = 0; Pos < sizeof(String)/sizeof(String[0]) ++Pos)
        cout << String[Pos]-'a'; // Outputs the char values combined (a-0, b-1, c-2 etc)

}
于 2013-02-22T04:05:05.580 に答える