Feeds
답변 있음
Given two input vectors: name - user last names age - corresponding age of the person.Return the name of the oldest person in the output var old_name.Why am I getting error?
close all; clear all; clc; function oldest_name = findOldest(name,age) len = length(name); Max_age = -1; Max_i...
Given two input vectors: name - user last names age - corresponding age of the person.Return the name of the oldest person in the output var old_name.Why am I getting error?
close all; clear all; clc; function oldest_name = findOldest(name,age) len = length(name); Max_age = -1; Max_i...
대략 3년 전 | 0
