This is my first program I have been allowed to choose myself. I am very green in c++. My programs jobs is to collect information such as water temp water depth and so on then output the best bass bait for that situation. Here is the code I have so far
#include<iostream>
using namespace std;
#include<string>
int main()
{
//declare varibles
int CLOUDCOVER=0;
int SUNNY=1;
int CLOUDY=2;
cout << "Please enter the current cloud cover 1.SUNNY 2.CLOUDY";
cin >> CLOUDCOVER;
int COVER=0;
int GRASS=1;
int ROCKS=2;
int NONE=0;
int TIMEOFYEAR=0;
int SUMMER=1;
int WINTER=2;
int SPRING=3;
int FALL=4;
int WATERTEMP=0;
int LOW=1;//35-49
int WARM=2;//50-64
int WATERDEP=0;
int SHALLOW=1;//1-6ft
int MEDIUM=2;//7-15
int DEEP=3;//16-30
int VERYDEEP=4;//30+
int WATERCLAIRTY=0;
int CLEAR=1;
int MURKY=2;
system("PAUSE");
return 0;
}
Now I was thinking of using a if and statement for the final part of it but I am not sure if that is the best way.