1. ホーム
  2. スクリプト・コラム
  3. その他

[解決済み】C++ -- ' の前に一次式があることが予想される。

2022-01-09 07:50:36

C++のコードを実行すると、以下のようになります。

#include <iostream>
#include <string>
using namespace std;

string userInput();
int wordLengthFunction(string word);
int permutation(int wordLength);

int main()
{
    string word = userInput();
    int wordLength = wordLengthFunction(string word);

    cout << word << " has " << permutation(wordLength) << " permutations." << endl;
    
    return 0;
}

string userInput()
{
    string word;

    cout << "Please enter a word: ";
    cin >> word;

    return word;
}

int wordLengthFunction(string word)
{
    int wordLength;

    wordLength = word.length();

    return wordLength;
}

int permutation(int wordLength)
{    
    if (wordLength == 1)
    {
        return wordLength;
    }
    else
    {
        return wordLength * permutation(wordLength - 1);
    }    
}

 エラーが出ます。

stringPerm.cpp: In function ‘int main()’:
stringPerm.cpp:12: error: expected primary-expression before ‘word’

また、変数を別の行で定義してから関数に代入してみましたが、結局同じエラーメッセージが表示されました。

どうすればいいですか?

を呼び出す際に、"string"は必要ではありません。 wordLengthFunction() .

int wordLength = wordLengthFunction(string word);

であるべきです。

int wordLength = wordLengthFunction(word);