Feeds
답변 있음
How do i write a script that will print the following multiplication table 1; 2 4; 3 6 9; 4 8 12 16; 5 10 15 20 25
clc; clear all; for i = 1:5 fprintf('%4d',i*[1:i]) fprintf('\n') end
How do i write a script that will print the following multiplication table 1; 2 4; 3 6 9; 4 8 12 16; 5 10 15 20 25
clc; clear all; for i = 1:5 fprintf('%4d',i*[1:i]) fprintf('\n') end
대략 4년 전 | 0
