Skip to content

Instantly share code, notes, and snippets.

View derbeargames's full-sized avatar
💭
Developing :)

Der Bear Games derbeargames

💭
Developing :)
View GitHub Profile
@derbeargames
derbeargames / calculator.ccp
Last active February 24, 2026 19:10
improved calculator
#include <iostream>
#include <string>
/*
This program is a calculator
which can solve stuff like
eqautions like 1 + 2
*/
using namespace std;
int main() {
@derbeargames
derbeargames / login program.cpp
Last active February 23, 2026 12:41
A simple program Write in C++ it is A login in / register system program
#include <iostream>
#include <string>
using namespace std;
/*
A simple program Write in C++ it is
A login in / register system program
*/
@derbeargames
derbeargames / Dates.cpp
Created February 22, 2026 18:49
this program asks for your date and name and can covert not really acurate the days! BTW. if needed change the commented years months weeks
#include <iostream>
/*
this program asks for your date and name and
can covert not really acurate the days!
BTW. if needed change the commented years months weeks
*/
using namespace std;
int main() {
@derbeargames
derbeargames / Myprogram.cpp
Created February 22, 2026 15:38
This is the code for a simple calculator in C++
#include <iostream>
#include <string>
//calculator in C++
using namespace std;
int main() {
string operation;
double num;