Print First N Perfect Squares

preview_player
Показать описание
Algorithm of perfect square :

Check the code here:

Рекомендации по теме
Комментарии
Автор

CODE:


clc
clear all
close all
x=input('Enter the number:');
Y=[];
g=length(Y);
m=1;
while(g<x)
y=sqrt(m);
z=ceil(y);
if(z==y)
Y=[Y m];
g=length(Y);
end
m=m+1;
end

KnowledgeAmplifier