Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김진환
/
Assignment2_pr
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
김진환
2021-09-30 03:55:27 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3999b189ca67dd6d32be1f068f8261b997eef932
3999b189
0 parents
first file to push
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
same_print.cpp
same_print.cpp
0 → 100644
View file @
3999b18
#include <iostream>
#include <vector>
#include <string>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <ctime>
#include <algorithm>
using
namespace
std
;
//print anything you type ten times
int
main
()
{
string
sentence
;
for
(
int
i
=
0
;
i
<
10
;
i
++
)
{
cin
>>
sentence
;
cout
<<
sentence
<<
'\n'
;
}
}
Please
register
or
login
to post a comment