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

23
Zaehler/main.cpp Normal file
View File

@@ -0,0 +1,23 @@
#include <iostream>
#include <windows.h>
#include <unistd.h>
using namespace std;
int main() {
SetConsoleOutputCP(CP_UTF8);
int Zahl1 = 5, Zahl2 = 10;
cout << "Zahl 1: ";
cin >> Zahl1;
cout << endl << "Zahl 2: ";
cin >> Zahl2;
for (int i = Zahl1; i < Zahl2+1; i++) {
cout << i << endl;
usleep(1000000);
}
return 0;
}