What is wrong with my C++ code for a chat bot using Microsoft Visual Studio?

Owen D

New member
include <iostream>
using namespace std;
int main()
{
float 66;
cout << "How are you today";
cin >> 66;
if (66 == "good");
cout << "me too";




system("pause");
return 0;
}
 
Back
Top