|
@ -2,6 +2,20 @@ |
|
|
// Created by Justin Trausch on 06.02.2024. |
|
|
// Created by Justin Trausch on 06.02.2024. |
|
|
#include <stdio.h> |
|
|
#include <stdio.h> |
|
|
|
|
|
|
|
|
|
|
|
// Int produkt |
|
|
|
|
|
// double Produkt |
|
|
|
|
|
// Bitshift bei Multiplikation mit 2er Potenzen |
|
|
|
|
|
// |
|
|
|
|
|
//6713 * 2^1 |
|
|
|
|
|
// |
|
|
|
|
|
// |
|
|
|
|
|
//6713 << 1 |
|
|
|
|
|
//6713 * 16 = 2^4 |
|
|
|
|
|
//6713 << 4 |
|
|
|
|
|
//2^n |
|
|
|
|
|
//x << n |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Funktion zur Berechnung des Produktsymbols |
|
|
// Funktion zur Berechnung des Produktsymbols |
|
|
int berechneProdukt(int start, int ende) { |
|
|
int berechneProdukt(int start, int ende) { |
|
|
int produkt = 1; |
|
|
int produkt = 1; |
|
|