Как исправить ошибки маркировки POS?

Вы можете решить эту проблему рекурсивно.

euclids <- function(x,y){
        theMax = max(x,y)
        theMin = min(x,y)

        if (theMax == theMin) return (theMax)
        else return (euclids(theMin, theMax-theMin))
}
0
задан sh.learner 21 February 2019 в 03:14
поделиться