tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
18
Task/Repeat-a-string/OxygenBasic/repeat-a-string.oxy
Normal file
18
Task/Repeat-a-string/OxygenBasic/repeat-a-string.oxy
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
'REPEATING A CHARACTER
|
||||
|
||||
print string 10,"A" 'result AAAAAAAAAA
|
||||
|
||||
'REPEATING A STRING
|
||||
|
||||
function RepeatString(string s,sys n) as string
|
||||
sys i, le=len s
|
||||
if le=0 then exit function
|
||||
n*=le
|
||||
function=nuls n
|
||||
'
|
||||
for i=1 to n step le
|
||||
mid function,i,s
|
||||
next
|
||||
end function
|
||||
|
||||
print RepeatString "ABC",3 'result ABCABCABC
|
||||
Loading…
Add table
Add a link
Reference in a new issue