Toggle navigation
Toggle navigation
This project
Loading...
Sign in
안형준
/
OS_lab4_assignment6
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
안형준
2018-09-28 11:38:31 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ed07a54737f75991114b0612158b8863fb7998b5
ed07a547
0 parents
EchoProgram ver 1.00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
0 deletions
EchoProgram.sln
EchoProgram/main.cpp
EchoProgram.sln
0 → 100644
View file @
ed07a54
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
EchoProgram/main.cpp
0 → 100644
View file @
ed07a54
#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
Please
register
or
login
to post a comment