Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김진환
/
Assignment2
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:10:47 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b172a32d67977061ebf51c8e90146229e9a77513
b172a32d
0 parents
first file for push
Show 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 @
b172a32
#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