안형준

EchoProgram ver 1.00


Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2016
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EchoProgram", "EchoProgram\EchoProgram.vcxproj", "{81A96576-052B-4E73-B195-7B38FFB67FB5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{81A96576-052B-4E73-B195-7B38FFB67FB5}.Debug|x64.ActiveCfg = Debug|x64
{81A96576-052B-4E73-B195-7B38FFB67FB5}.Debug|x64.Build.0 = Debug|x64
{81A96576-052B-4E73-B195-7B38FFB67FB5}.Debug|x86.ActiveCfg = Debug|Win32
{81A96576-052B-4E73-B195-7B38FFB67FB5}.Debug|x86.Build.0 = Debug|Win32
{81A96576-052B-4E73-B195-7B38FFB67FB5}.Release|x64.ActiveCfg = Release|x64
{81A96576-052B-4E73-B195-7B38FFB67FB5}.Release|x64.Build.0 = Release|x64
{81A96576-052B-4E73-B195-7B38FFB67FB5}.Release|x86.ActiveCfg = Release|Win32
{81A96576-052B-4E73-B195-7B38FFB67FB5}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {CED4CAAD-D966-48B7-A6AA-36BB69263EC2}
EndGlobalSection
EndGlobal
#include<iostream>
#include<string>
using namespace std;
int main()
{
string message;
cout << "input your message : ";
getline(cin, message);
cout << "your message :" << message << endl;
system("pause");
return 0;
}
\ No newline at end of file