일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 데이터베이스
- 운영체제
- ubuntu
- Python
- Python challenge
- 러스트
- 오라클
- 러스트 예제
- 파이썬
- Rust
- 파이썬 챌린지
- OS
- java
- 백준 러스트
- 알고리즘
- 자바
- 러스트 프로그래밍 공식 가이드
- C
- Operating System
- 파이썬 첼린지
- 파이썬 알고리즘
- 데이터 통신
- Reversing
- Database
- data communication
- 백준
- 자바 개념
- 자바 기초
- 오라클DB
- 우분투
- Today
- Total
목록백준 반복문 단계 (2)
IT’s Portfolio
💻 Baekjoon Loop Stage Multiplication Table Question_Link - 2739 Basic Code use std::io; fn input() -> String { let mut buf = String::new(); io::stdin().read_line(&mut buf).unwrap(); buf.pop(); buf } fn main() { let n: i32 = input().parse().unwrap(); for i in 1..10 { println!("{n} * {i} = {}", n*i); } } A+B - 3 Question_Link - 10950 Basic Code use std::io; fn result() -> i32 { let mut buf = Strin..
💻 Baekjoon Loop Stage ⚙️ Multiplication Table Q. N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다. Input. 첫째 줄에 N이 주어진다. N은 1보다 크거나 같고, 9보다 작거나 같다. Output. 출력형식과 같게 N1부터 N9까지 출력한다. N = int(input()) for i in range(1,10): print(f'{N} * {i} = {N*i}') N=n=int(input()) exec("print(N, '*', n//N, '=', n); n+=N;"*9) ⚙️ Two Integer Q. 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하..