inital commit, adding all school projects

This commit is contained in:
2026-04-09 06:47:58 +02:00
commit 4175258de7
185 changed files with 6947 additions and 0 deletions

21
countdown/main.cpp Normal file
View File

@@ -0,0 +1,21 @@
#include <iostream>
#include <windows.h>
using namespace std;
int main() {
SetConsoleOutputCP(CP_UTF8);
// vars
int count = 3;
cout << "Wie lange soll der Countdown gehen (in sek.)? ";
cin >> count;
cout << endl;
for (int i = count; i > 0; i--) {
cout << i << endl;
Sleep(1000);
}
}