This commit is contained in:
Robert Jelic
2025-02-16 18:04:24 +01:00
parent 41e6149828
commit 31787b0e9b
2670 changed files with 1037781 additions and 0 deletions

22
node_modules/shiki/samples/matlab.sample generated vendored Normal file
View File

@@ -0,0 +1,22 @@
clear
number = input('Give an integer: ');
remainder2 = rem(number,2);
remainder3 = rem(number,3);
if remainder2==0 & remainder3==0
'Your number is divisible by both 2 and 3'
else
if remainder2==0
'Your number is divisble by 2 but not by 3'
else
if remainder3==0
'Your number is divisible by 3 but not by 2'
else
'Your number is not divisible by either 2 or 3'
end
end
end
% From https://www.math.colostate.edu/~yzhou/course/matlab_doc/matlab_programming_intro.html