Muhammad Akmal Afibuddin Putra
State Polytechnic of Malang
Followers: 0 Following: 0
Electrical engineering student, interest on renewable energy
Programming Languages:
Python
Python
Statistiques
All
RANG
62 744
of 295 818
RÉPUTATION
0
CONTRIBUTIONS
0 Questions
1 Réponse
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
0
RANG
of 20 283
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Réponse apportée
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 ...
plus de 4 ans il y a | 0