metre to feet converter
The idea is to make a converter, which exchange meters to feets.
We use a factor of 1m = 3.281*1f.
so 3m are equals to 9.843 m...
約9年 前
解決済み
Average Grade
Given a 1x5 vector presents the grades of a student on five tests. Calculate the average grade of that student.
How long does it take to run a bath?
Given the *volume flow rate* (volume/time) of a faucet and the *volume* of a bath tub, find the amount of time it takes to fill ...
Hydrogens in a Saturated Hydrocarbon
Given (c) carbon atoms in a saturated hydrocarbon molecule (all single bonds), how many hydrogen atoms (h) are in the molecule?
約9年 前
解決済み
Is there a GPU Device?
Return true if there is a supported GPU device available on the Cody computer.
約9年 前
解決済み
Rotate array 90 degrees
Rotate the given matrix by 90 degrees.
Example,
A = [1 2 3 ; 4 5 6 ] B = rotated(A) = [ 3 6; 2 5; 1 4 ]