Muhammad Akmal Afibuddin Putra
State Polytechnic of Malang
Followers: 0 Following: 0
Electrical engineering student, interest on renewable energy
Programming Languages:
Python
Python
Statistica
All
RANK
175.272
of 296.109
REPUTAZIONE
0
CONTRIBUTI
0 Domande
1 Risposta
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
Write a function called under_age that takes two positive integer scalar arguments: age that represents someone's age, and limit that represents an age limit. The function returns true if the person is younger than the age limit. If the second arg
function too_young = under_age(age,limit) if nargin < 2 limit = 21; end if age < limit too_young = 1 == 1; else ...
Write a function called under_age that takes two positive integer scalar arguments: age that represents someone's age, and limit that represents an age limit. The function returns true if the person is younger than the age limit. If the second arg
function too_young = under_age(age,limit) if nargin < 2 limit = 21; end if age < limit too_young = 1 == 1; else ...
oltre 4 anni fa | 0