Files
matlab-learning/lab4/exercise4_10.m
2025-11-26 19:01:27 +08:00

7 lines
67 B
Matlab

mysum=0,i=1;
while(i<=100)
mysum=mysum+i
i=i+1 ;
end
mysum