在我的程序主函数输入结束时预期'}'

时间:2011-03-24 19:09:14

标签: c++ compilation syntax-error curly-braces

这个程序应该教授功能。我已将每个函数分成头文件。我认为在某个地方有一个向后或缺失的花括号,但我已经盯着这个程序好几个小时,并尝试重新安排事情,似乎无法做任何事情。

该程序应该读取电话号码并打印出来。如果它是提供的字母,那么在将它设为大写字母后,它会像电话键盘一样将其排序为0-9。它还将返回无效字符等的错误代码,这些代码由switch语句控制。

主要功能

我得到的一个错误是在最后一行的右大括号上:

  输入结束时

预期'}'

#include <iostream>
#include <cctype>
#include "Read_Dials.h"
#include "To_Digit.h"
#include "Acknowledge_Call.h"

using namespace std;


int main()
{
    char digit1, digit2, digit3, digit4, digit5, digit6, digit7, digit8;
    int return_value = 0;

    return_value = int Read_dials(digit1, digit2, digit3, digit4, digit5, digit6, digit7, digit8);

    if (return_value != -5)
        break;

        switch(return_value){

            case -1:
            cout << "ERROR - An invalid character was entered. Please try again, only numbers or letters this time." << endl;
                break;
        case -2:
            cout << "ERROR - Phone number cant start with 0." << endl;
                break;
        case -3:
            cout << "ERROR - This isn't the movies, Phone numbers dont start with \" 555 \" here buddy :/" << endl;
                break;
        case -4:
            cout << "ERROR - Please make sure the hyphen is in position 4." << endl;
                break;
            default:
                void Acknowledge_Call(digit1, digit2, digit3, digit4, digit5, digit6, digit7, digit8);
        }
return 0;
}

Read_Dials函数

此功能没有错误

int Read_Dials(char &num1, char &num2, char &num3, char &num4, char &num5, char &num6, char &num7, char &num8)
{

#include "To_Digit.h"

int i = 0;

    do{
    i++;
    cout << "Please enter the character for position #" << i << " in the phone number\n";
    cout << "NOTE: Please put the hyphen \" - \" in the fourth position and use \"Q\"to quit." << endl;
    char temp;
    cin >>temp;

        if (i = 1 && temp == 0)
        {
            return_value = -2;
        }
        else if (i == 1 && (temp == 'q' || temp == 'Q'))
        {
            return_value -5;
        }

        else if (i == 1)
        {
            temp = &num1;
            &inputValue = &num1;
            int To_Digit(char &num1);       
        }
        else if (i == 2)
        {
            temp = &num2;
            &inputValue = &num2;
            int To_Digit(char &num2);
        }
        else if (i == 3)
        {
            temp = &num3;
            &inputValue = &num3;
            int To_Digit(char &num3);
        }
        else if (&num1 == '5' && &num2 == '5' && &num3 == '5')
        {
            return_value -3;
        }
        else if (i == 4 && temp != '-')
        {
            return_value -4;
        }
        else if (i == 5)
        {
            temp = &num5;
            &inputValue = &num5;
            int To_Digit(char &num5);
        }
        else if (i == 6)
        {
            temp = &num6;
            &inputValue = &num6;
            int To_Digit(char &num6);
        }
        else if (i == 7)
        {
            temp = &num7;
            &inputValue = &num7;
            int To_Digit(char &num7);
        }
        else if (i == 8)
        {
            temp = &num8;
            &inputValue = &num8;
            int To_Digit(char &num8);
        }
    }while (i < 8)
    return 0;
}

To_Digit功能

我得到的第二个也是最后一个错误就在这里,在第二行(开头括号):

  

在'{'token

之前,不允许使用函数定义
int To_Digit(char &inputValue)
{

char &inputValue;

    if (isdigit(&inputValue))
        break;

    &inputValue = toupper(&inputValue);

    switch(&inputValue){

        case 'A': case 'B': case 'C':
            &inputValue = '2'; 
                break;

        case 'D': case 'E': case 'F':
            &inputValue = '3'; 
                break;

        case 'G': case 'H': case 'I':
            &inputValue = '4'; 
                break;

        case 'J': case 'K': case 'L':
            &inputValue = '5'; 
                break;

        case 'M': case 'N': case 'O':
            &inputValue = '6'; 
                break;

        case 'P': case 'Q': case 'R': case 'S':
            &inputValue = '7'; 
                break;

        case 'T': case 'U': case 'V':
            &inputValue = '8'; 
                break;

        case 'W': case 'X': case 'Y': case 'Z':
            &inputValue = '9'; 
                break;
        default:
            return -1;

    }
}

Acknowledge_Call功能

此功能没有错误。

void Acknowledge_Call(digit1, digit2, digit3, digit4, digit5, digit6, digit7, digit8)
{
    cout << "Phone number entered is: " << digit1 << digit2 << digit3 << digit4 << digit5 << digit6 << digit7 << digit8 << endl;
}

这段代码有什么问题?我该如何解决?

4 个答案:

答案 0 :(得分:2)

 default:
     void Acknowledge_Call(digit1, digit2, digit3, digit4, digit5, digit6, digit7, digit8);

调用函数时不使用返回类型。所以,放弃void。另外default案例应该有break,否则它会落实


int Read_Dials(char &num1, char &num2, char &num3, char &num4, char &num5, char &num6, char &num7, char &num8)
{

   #include "To_Digit.h"  // The header actually has a definition. Preprocessor 
                          // copies the content of To_Digit.h here. So, you have
                          // a function definition inside another function while 
                          // compilation phase which is not allowed. So remove
                          // it and place it at top of the file.
   // .....

}

答案 1 :(得分:2)

我还没有尝试过自己运行代码,但我能看到的唯一让我看起来很棒的是“Read_Dials”函数...不要在函数中放置#INCLUDE语句。始终将这些陈述放在文件的顶部。

移动#include并让我们知道它的作用。 祝你好运。

答案 2 :(得分:2)

您的#includes应位于文件顶部...

if (return_value != -5)
    break;

(在main中)是不允许的,因为它没有循环来突破

答案 3 :(得分:0)

以下是一些问题(除了您没有提供头文件的事实):

  1. main()中“默认”后的功能声明
    删除函数调用前面的void

  2. Acknowledge_Call声明中未指定参数的类型
    改为:
    void Acknowledge_Call(char digit1, char digit2, char digit3, char digit4, char digit5, char digit6, char digit7, char digit8)

  3. 删除int功能中Read_dials前面的main

  4. main()中,更改'Read_dials to Read_Dials :
    The C++ language is case-sensitive, thus 'dials
    != Dials!= dIaLs

  5. break函数中的if后删除main()
    您需要return 1;return EXIT_FAILURE;exit(1);

  6. 请务必将这些行添加到Acknowledge_Calls.cpp

    #include "acknowledge_call.h"
    #include <iostream>
    using namespace std;

  7. 请务必将这些行添加到Read_Dials.cpp

    #include "read_dials.h"
    #include <iostream>
    using namespace std;

  8. Read_Dials.cpp中,将#include "To_Digit.h移至文件顶部。

  9. 执行all函数时,不要将返回类型和参数类型放在调用中 例如,使用:
    num1 = To_Digit(digit1);
    而不是 int To_Digit(char &num1);

  10. 您需要与教师讨论如何调用函数和传递参数(这次,请仔细聆听)。另外,请阅读关于C ++的一书。