forked from 01-PP-asadmalli/02_CodeChallenge_01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
challenge_01.js
57 lines (37 loc) · 1.35 KB
/
challenge_01.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/********* CODE CHALLENGE 01 **********/
/*
Geben Sie über eine Prompt-Anforderung eine Zahl ein.
Geben Sie über eine Prompt-Anforderung eine zweite Zahl ein.
Berechnen Sie die Summe der beiden Zahlen.
Geben Sie die Summe der Zahlen in die Konsole aus:
"Die Summe der Zahlen ist: summe"
*/
// Ansatz 1 (Fehlerhaft)
// var zahl1 = prompt("Bitte gib mir die ertse Zahl ein:");
// var zahl2 = prompt("Bitte gib mir die Zweite Zahl ein:");
// console.log(zahl1+zahl2);
// Ansatz 2
// let zahl1 = prompt("Bitte gib mir die ertse Zahl ein:");
// let zahl2 = prompt("Bitte gib mir die ertse Zahl zwei:");
// zahl1 = parseInt (zahl1);
// zahl2 = parseInt (zahl2);
// console.log(zahl1+zahl2);
// Ansatz 3 (Taschenrechner)
let zahl1 = prompt("Bitte gib mir die ertse Zahl ein:");
let zahl2 = prompt("Bitte gib mir die ertse Zahl zwei:");
let operation = prompt("Welche Rechenoperation möchtest du durchführen? (+, -, *, /)");
zahl1 = parseFloat(zahl1);
zahl2 = parseFloat(zahl2);
let result;
if (operation === "+") {
result = zahl1 + zahl2;
} else if (operation === "-") {
result = zahl1 - zahl2;
} else if (operation === "*") {
result = zahl1 * zahl2;
} else if (operation === "/") {
result = zahl1 / zahl2;
} else {
console.log("Ungültige Eingabe");
}
console.log("Das Ergebnis ist: " + result);