It looks like you're new here. If you want to get involved, click one of these buttons!
int mynumber;
mynumber = 21;
int
short int
long int
long long int
float
double
long double
char
wchar_t
char string
bool
include <iostream>
int main()
{
using namespace std;
int mynumber;
cout << \"What is your number?\" << endl;
cin >> mynumber;
cout << \"your number is \" << mynumber;
}
return 0;