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

20
KalorienRechner/main.cpp Normal file
View File

@@ -0,0 +1,20 @@
#include <iostream>
using namespace std;
int main() {
double gewicht = 0;
double strecke = 0;
double VerbrauchteKalorien = 0;
cout << "Wie viel wiegst du? ";
cin >> gewicht;
cout << "Wie weit bist du gelaufen? ";
cin >> strecke;
VerbrauchteKalorien = 0.9 * gewicht * strecke;
cout << "Du hast ca. " << VerbrauchteKalorien << " verbrannt." << "\n";
cin.get(); cin.get();
return 0;
}