error C2064: term does not evaluate to a function taking 0 arguments

来源:百度知道 编辑:UC知道 时间:2024/06/15 00:57:01
#include <iostream> //allows program to output and input data to the screen
#include <stdio.h> //allows program to use the stdio
using namespace std;
const int ROW = 2; //makes program to have 2 row(group1 group2)
const int COUNT = 10 ; //allows user enter 10 score
double Score[ROW][COUNT]; //function to list both group and score within floating number
char temp; //gives the character meaning

void MenuList() //function to list the menu
{
cout << "1.Input scores" << endl;
cout << "2.Show scores" << endl;
cout << "3.Calculate statistical significance" << endl;
cout << "4.Exit" << endl ;
cout << "Enter your selection (1-4): " ;
}

int ChooseList()
{
int choose = 0; //program makes the user to choose the list functions
cin >> choose; //user choose the menu

条件子句有问题。
告诉你一个解决此类问题的技巧、或者说叫做技能更合适。不要一上来就问问题,而是应该先利用网上的资源好好找一下,如果实在找不到,再提问。这样有利于你的解决问题能力的培养与提高。加油吧!