This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
double t() | |
{ | |
double a; | |
return a; // fehler, a wurde zwar initialisiert aber nicht deklariert also es wurde kein wert zugewiesen | |
} | |
// was du eigentlich wolltest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string> | |
using namespace std; | |
#ifndef MEDIUM_H | |
#define MEDIUM_H | |
class Medium | |
{ | |
public: | |
string titel; | |
bool ausleihstatus; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://digitalezeitung.morgenweb.de/ePaper/app/index.html | |
ConfigOptions.hasUserSubscriptions = true; | |
ConfigOptions.appMode = "full"; | |
ConfigOptions.loggedByIp = 1; |