feat: add stylings

This commit is contained in:
2025-10-23 22:05:54 +03:30
parent b8a23eb341
commit 64ca271854
13 changed files with 222 additions and 17 deletions
+4
View File
@@ -0,0 +1,4 @@
https://github.com/fanteastick/quartz-test
https://github.com/bfahrenfort/quartz
@@ -24,7 +24,7 @@
## 🛠️ Workshop & Assignments
- 💬 [Workshop Questions](./workshops)
- 🧮 [Assignments](01-Workshop.md)
- 🧮 [Assignments](01-topics/01-problem-solving/1-Workshop.md)
- ❓ [Q&A and Common Issues](./resources/qa.md)
---
@@ -1,13 +1,10 @@
# **Q&A**
## ❓ Question 1
> Question: _“Whats the difference between `int` and `float` in C++?”_
> [!info] **Answer**
`int` stores whole numbers without decimals, while `float` stores numbers with fractional parts.
For example:
> `int` stores whole numbers without decimals, while `float` stores numbers with fractional parts.
> For example:
> - `int x = 5;`
> - `float y = 5.25;`
@@ -24,7 +24,7 @@
## 🛠️ Workshop & Assignments
- 💬 [Workshop Questions](./workshops)
- 🧮 [Assignments](01-Workshop.md)
- 🧮 [Assignments](01-topics/02-basics-and-data-types/1-Workshop.md)
- ❓ [Q&A and Common Issues](./resources/qa.md)
---
@@ -1,6 +1,3 @@
# **Q&A**
## ❓ Question 1
> Question: _“Whats the difference between `int` and `float` in C++?”_