Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3b38bd98fc2e3048d7bf8b05ee2053505e196584 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html lang="en">
<head>
	<meta http-equiv="Content-Language" content="en-us">
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
	<title>C++ Hello World example</title>
</head>
<body bgcolor="#ffffcc">
<font color="#0066ff">Copy the code below and paste it into the <b>main.cpp</b> file in the Editor View:</font>

<pre>
#include &#60iostream&#62
#include &#60string&#62
using namespace std;

int main()
{
	string yourName;

	cout &lt;&lt; "Enter your name: ";
	cin  &gt;&gt; yourName;
	cout &lt;&lt; "Hello " + yourName &lt;&lt; endl;

	return 0;
}

</pre>

</body>
</html>

Back to the top