LoslegenKostenlos loslegen

If this, Else that

An extension of the if statement is to perform a different action if the condition is false. You can do this by adding else after your if statement:

if(condition) {
    code if true
} else {
    code if false 
}

Diese Übung ist Teil des Kurses

Intermediate R for Finance

Kurs anzeigen

Anleitung zur Übung

  • Extend the last exercise by adding an else statement that prints "Do nothing!".

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

micr <- 57.44

# Fill in the blanks
if( micr < 55 ) {
    print("Buy!")
} ___ {
    ___
}
Code bearbeiten und ausführen