Skip to content

Commit 291c66c

Browse files
2 parents a541af5 + 335bb5c commit 291c66c

2 files changed

Lines changed: 35 additions & 0 deletions

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ through day-wise problem solving.
1111
- **Day 01: Core Number Programs**
1212
👉 [View Day 01 Programs](src/number_Programming/core/day_01)
1313

14+
## 📁 Medium Level – Number Programming
15+
16+
- **Day 02: Medium Number Programs**
17+
👉 [View Day 02 Programs](src/number_Programming/medium/day_02)
18+
19+
20+
21+
22+
1423
---
1524

1625
## Repository Structure
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## Medium Level Number Programming – Day 02
2+
3+
This folder contains medium-level Java number programming problems focused on
4+
digit manipulation, prime logic, factors, and mathematical reasoning.
5+
6+
### Topics Covered
7+
- Multiplication table of a number
8+
- Prime number check
9+
- Sum and product of prime numbers in a range
10+
- Factors of a number (sum & product)
11+
- Even and odd factors
12+
- Digit-based operations:
13+
- Count of digits
14+
- Even digits
15+
- Odd digits
16+
- Sum & product of digits
17+
- Prime digits
18+
- Factorial of digits
19+
20+
### Objective
21+
- Strengthen loop-based logic
22+
- Improve number and digit manipulation skills
23+
- Practice conditional checks and modular arithmetic
24+
- Write clean Java methods using Scanner input
25+
26+
Each problem is implemented as a **separate Java file** for clarity and practice.

0 commit comments

Comments
 (0)