bla
This commit is contained in:
parent
1a8ac4ec4a
commit
1fc56f7087
|
@ -14,12 +14,20 @@ void help2();
|
|||
|
||||
|
||||
|
||||
void recurse2(int i) {
|
||||
if(i == 0) {help2(); return;}
|
||||
void recurse2(int i, int rounds) {
|
||||
if(i == 0 && rounds == 2) {
|
||||
help2();
|
||||
}
|
||||
else if(i == 0 && rounds == 1) {
|
||||
recurse2(3, 0);
|
||||
}
|
||||
else
|
||||
return;
|
||||
|
||||
PRINT;recurse2(i-1);return;
|
||||
}
|
||||
void help2() {PRINT;
|
||||
//recurse2(3);
|
||||
recurse2(3, 1);
|
||||
PRINT;
|
||||
}
|
||||
|
||||
|
@ -61,8 +69,19 @@ int main(int argc, const char * argv[]) {
|
|||
|
||||
currentColor = Colors::GREEN;
|
||||
|
||||
/*
|
||||
* 1x Rekursion
|
||||
* 1x Selektion
|
||||
* 1x Subroutine
|
||||
*
|
||||
* 3x Aufrufe aus:
|
||||
* 1x Rekursion
|
||||
* 1x Hilfsfunktion
|
||||
* 1x main
|
||||
*/
|
||||
|
||||
//startA();
|
||||
recurse2(3);
|
||||
recurse2(3, 2);
|
||||
|
||||
std::string s;
|
||||
std::cin >> s;
|
||||
|
|
|
@ -41,6 +41,25 @@ public:
|
|||
|
||||
//=======================================
|
||||
|
||||
class Base {
|
||||
int a;
|
||||
public:
|
||||
Base(int a) {
|
||||
this.a = a;
|
||||
}
|
||||
};
|
||||
|
||||
class Derived : public Base{
|
||||
int b;
|
||||
public:
|
||||
Derived(int a, int b) {
|
||||
Base::Base(a);
|
||||
this.b = b;
|
||||
}
|
||||
};
|
||||
|
||||
//=======================================
|
||||
|
||||
FooVal::FooVal(int initialValue)
|
||||
: _someValue(initialValue)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue