#include "stdafx.h"#include <iostream> usingnamespacestd;
int main()
{
cout << "The answer to the question of\nLife,the Universe,and Everything is 42";
}
9
#include "stdafx.h"#include <iostream> usingnamespacestd;
int main()
{
int the_number;
cout << "请输入一个整数:\n";
cin >>the_number;
cout <<the_number;
}