所以老实说,我不知道我的代码有什么问题。任何建议都会有所帮助。查看我评论的代码部分(朝向中间)。计算机给了我一个错误,说应该是“;”。支架有问题,或者我在其他地方搞砸了,只是找不到。
//Experiment2
//Creating functions and recalling them.
#include <iostream>
using namespace std;
void a()
{
cout<<"You try running but trip and fall and the crazy man kills you!!!! HAAHAHAHHAHA.";
}
void b()
{
cout<<"You stop drop and roll and the crazy man is confused by this and leaves you alone!";
}
void c()
{
cout<<"you try fighting the man but end up losing sorry!";
}
int main()
{
int a;
int b;
int c;
int d;
a=1;
b=2;
c=3;
cout<< "Once upon a time you was walking to school,\n";
cout<< " when all of the sudden some crazy guy comes running at you!!!!"<<endl;
cout<< " (This is the begining of your interactive story)"<<endl;
cout<< "Enter in the number according to what you want to do.\n";
cout<< " 1: run away, 2:stop drop and roll, or 3: fight the man."<<endl;
cin>>d;
void checkd()
//i dont know whats wrong with the bracket! the computer gives me an error saying expected a";"
{
if(d==1)
{
void a();
}
if(d==2)
{
void b();
}
if(d==3)
{
void c();
}
}
}