-5
#include <iostream>
using namespace std;
char sell;
int crew;
char you [50];
int ships =1;
int money;
int choice;
class ship{
public:
void sell_shii(){
cout<<"Do you wish to seel your ship?"<<endl;
cout<<"1to sell ship and 2to cancel"<<endl;
cin>>sell;
if (sell==1 && ships >0){
cout<<"You sold your ship"<<endl;
ships+=sell;
}else{
cout<<"You didnt sell your ship"<<endl;
}
}
}
int main()
{
cout<<"What is your name captain?"<<endl;
cin>>you;
cout<<"Welcome captain "<<you<<endl;
cout<<"You have "<<ships<<"ship/s";
cout<<"What would you like to do?\n 1 buy ships 2 sell ships\n 3 battle\n
cin<<choice;
switch (choice)
case 1:
buyship()
break;
case 2:
sellshii()
break;
case 3;
battle();
return 0;
}
私の "{" int mainはうまくいかず、何をしましたか? (あなたがmain
を宣言する前に、最終}
)私のintで何かが間違っていますmain(){}
C:\Users\Ethan\Desktop\New folder.IPA\C++\Ship game\main.cpp|37|error: new types may not be defined in a return type|
C:\Users\Ethan\Desktop\New folder.IPA\C++\Ship game\main.cpp|37|error: extraneous `int' ignored|
C:\Users\Ethan\Desktop\New folder.IPA\C++\Ship game\main.cpp|37|error: `main' must return `int'|
C:\Users\Ethan\Desktop\New folder.IPA\C++\Ship game\main.cpp|37|error: return type for `main' change to "int"
置きます。 intメインの前に – perreal
Thnaks:それはそれをソートしました。 –
コードを正しくインデントするために時間をかけてください。 – Caleb