• This project
    • Loading...
  • Sign in

정나리 / Book_share

%ea%b7%b8%eb%a6%bc1
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
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Book_share
  • Desktop
  • github
  • gugudan
  • main.cpp
  • Ellie's avatar
    gugudan · ae8b49ac
    ae8b49ac
    Ellie authored 2021-10-08 10:42:12 +0900
main.cpp 303 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//
//  main.cpp
//  gugu
//
//  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;
    }
}