First Commit

This commit is contained in:
Max
2026-08-10 15:23:12 +02:00
commit 6aa58b3948
91 changed files with 3557 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
namespace aufgaben;
internal class Program
{
private static void Main(String[] args)
{
int bound = 100;
try {
if (args.Length > 0){
bound = Convert.ToInt32(args[0]);
}
} catch (Exception e) {
Console.WriteLine(e.Message);
}
Aufgabe_1.isEven(5);
Aufgabe_1.isEven(4);
var zahl = 234612;
var quersumme = Aufgabe_2.getQuersumme(zahl);
Console.WriteLine("Die Quersumme von " + zahl + " ist " + quersumme);
Aufgabe_3.zahlenRaten(bound);
}
}