I'm still learning

#include "stdafx.h" //remove if not using vs
#include <iostream>
int main()
{
int x;
std::cout << "Please pick how you feel today." << std::endl;
std::cout << "1.Fine 2.Good 3.Decent 4.Bad 5.Depressed 6.Other 7.IDK" << std::endl;
std::cin >> x;
if (x == 1)
{
std::cout << "stuff" << std::endl;
}
else if (x == 2)
{
std::cout << "stuff" << std::endl;
}
//move else ifs here etc
else
{
std::cout << "Sorry I don't believe you picked a correct option." << std::endl;
}
}

//IWife made by Matthew Stahlke
#inlcude <iostream>
using namespace std;
int main()
{
int x;
cout << "Wie fühlst du dich heute?" << endl;
cin >> x;
if (x == gut)
{
cout << "Das finde ich sehr gut." << endl;
}
else if (x == sehr gut)
{
cout << "Das finde ich super." << endl;
}
else
{
cout << "Mmh, das ist ziemlich dumm." << endl;
}
}

char str[50]; // this would create an array of 50 chars