photo

Iccu OUMOUACHA


Last seen: environ 5 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

MATLAB Answers

0 Questions
1 Réponse

RANG
67 076
of 299 750

RÉPUTATION
0

CONTRIBUTIONS
0 Questions
1 Réponse

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
 of 20 792

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 165 710

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid. If any of the inputs is not
function valid=valid_date(year, month, day) if year<=0 || month<=0 || day<=0 || mod( year , 1 )~=0 || mod( month , 1 )~=0 ...

plus de 5 ans il y a | 0