Toggle navigation
Toggle navigation
This project
Loading...
Sign in
정나리
/
Book_share
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
Ellie
2021-10-08 11:19:21 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b7bc5271d258237d26b54b4bdecbb270e4c47e65
b7bc5271
1 parent
7d377546
gugu
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
Documents/git/gitgugu/gitgugu/main.cpp
Documents/git/gitgugu/gitgugu/main.cpp
0 → 100644
View file @
b7bc527
//
// main.cpp
// gitgugu
//
// Created by 정나리 on 2021/10/08.
//
#include <iostream>
using
namespace
std
;
int
main
()
{
for
(
int
i
=
1
;
i
<
9
;
i
++
)
{
for
(
int
j
=
1
;
j
<
10
;
j
++
){
cout
<<
i
<<
" * "
<<
j
<<
" = "
<<
i
*
j
<<
endl
;
}
cout
<<
endl
;
}
}
Please
register
or
login
to post a comment