Short Cake
8PM - Animal Crossing Wild World

사생활 보호 설정

https://gamjia.tistory.com

Mini Rooms

  • 내 미니룸
  • 미니미설정
  • 미니룸설정
  • 답글수 [0]

What Friends Say

한마디로 표현해봐~

1촌평 관리

2739번 구구단

GamJia 2023. 3. 15. 14:42

단계별로 풀어보기 - 반복문 - 1단계

https://www.acmicpc.net/problem/2739

#include <iostream>
using namespace std;
int main()
{
    int N;
    cin>>N;
    
    for(int i=1;i<=9;i++)
    {
        cout<<N<<" * "<<i<<" = "<<N*i<<endl;
    }
    
    return 0;
}
​

 

'BaekJoon' 카테고리의 다른 글

8393번 합  (0) 2023.03.22
10950번 A+B -3  (1) 2023.03.21
2480번 주사위 세개  (0) 2023.03.15
2525번 오븐 시계  (0) 2023.03.15
2884번 알람 시계  (0) 2023.03.15