Skip to content

Instantly share code, notes, and snippets.

View tmtygnz's full-sized avatar
:octocat:
Coding in a nuclear bunker somewhere

!!Timothy tmtygnz

:octocat:
Coding in a nuclear bunker somewhere
View GitHub Profile
@tmtygnz
tmtygnz / main.cpp
Last active October 25, 2025 12:55
Random Number Generator Sabi ni Renz
#include <iostream>
#include <string>
#include <cctype>
constexpr int MIN_NUM = 0;
constexpr int MAX_NUM = 100;
void printDivider() {
std::cout << std::string(32, '=') << std::endl;
}