안형준

EchoProgram ver 1.00

1 +
2 +Microsoft Visual Studio Solution File, Format Version 12.00
3 +# Visual Studio 15
4 +VisualStudioVersion = 15.0.28010.2016
5 +MinimumVisualStudioVersion = 10.0.40219.1
6 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EchoProgram", "EchoProgram\EchoProgram.vcxproj", "{81A96576-052B-4E73-B195-7B38FFB67FB5}"
7 +EndProject
8 +Global
9 + GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 + Debug|x64 = Debug|x64
11 + Debug|x86 = Debug|x86
12 + Release|x64 = Release|x64
13 + Release|x86 = Release|x86
14 + EndGlobalSection
15 + GlobalSection(ProjectConfigurationPlatforms) = postSolution
16 + {81A96576-052B-4E73-B195-7B38FFB67FB5}.Debug|x64.ActiveCfg = Debug|x64
17 + {81A96576-052B-4E73-B195-7B38FFB67FB5}.Debug|x64.Build.0 = Debug|x64
18 + {81A96576-052B-4E73-B195-7B38FFB67FB5}.Debug|x86.ActiveCfg = Debug|Win32
19 + {81A96576-052B-4E73-B195-7B38FFB67FB5}.Debug|x86.Build.0 = Debug|Win32
20 + {81A96576-052B-4E73-B195-7B38FFB67FB5}.Release|x64.ActiveCfg = Release|x64
21 + {81A96576-052B-4E73-B195-7B38FFB67FB5}.Release|x64.Build.0 = Release|x64
22 + {81A96576-052B-4E73-B195-7B38FFB67FB5}.Release|x86.ActiveCfg = Release|Win32
23 + {81A96576-052B-4E73-B195-7B38FFB67FB5}.Release|x86.Build.0 = Release|Win32
24 + EndGlobalSection
25 + GlobalSection(SolutionProperties) = preSolution
26 + HideSolutionNode = FALSE
27 + EndGlobalSection
28 + GlobalSection(ExtensibilityGlobals) = postSolution
29 + SolutionGuid = {CED4CAAD-D966-48B7-A6AA-36BB69263EC2}
30 + EndGlobalSection
31 +EndGlobal
1 +#include<iostream>
2 +#include<string>
3 +using namespace std;
4 +
5 +int main()
6 +{
7 + string message;
8 + cout << "input your message : ";
9 + getline(cin, message);
10 +
11 + cout << "your message :" << message << endl;
12 +
13 +
14 +
15 +
16 + system("pause");
17 + return 0;
18 +}
...\ No newline at end of file ...\ No newline at end of file