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

View File

@@ -0,0 +1,18 @@
#include <iostream>
using namespace std;
int main() {
double Spannung;
double Widerstand;
cout << "Stromstärke:" << endl;
cin >> Spannung;
cout << "Widerstand:" << endl;
cin >> Widerstand;
double StromStaerke = Spannung / Widerstand;
cout << StromStaerke << " Ampere";
return 0;
}