How to resolve the algorithm Reverse a string step by step in the Ezhil programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Reverse a string step by step in the Ezhil programming language
Table of Contents
Problem Statement
Take a string and reverse it. For example, "asdf" becomes "fdsa".
Preserve Unicode combining characters. For example, "as⃝df̅" becomes "f̅ds⃝a", not "̅fd⃝sa".
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Reverse a string step by step in the Ezhil programming language
Source code in the ezhil programming language
## இந்த நிரல் தரப்படும் சரம் ஒன்றைத் தலைகீழாகத் திருப்பி அச்சிடும்
## உதாரணமாக "abc" என்ற சரம் தரப்பட்டால் அதனைத் திருப்பி "cba" என அச்சிடும்
## "எழில்" மொழியின்மூலம் இரண்டு வகைகளில் இதனைச் செய்யலாம். இரண்டு உதாரணங்களும் இங்கே தரப்பட்டுள்ளன
நிரல்பாகம் திருப்புக (சரம்1)
## முதல் வகை
சரம்2 = ""
@( சரம்1 இல் இ) ஒவ்வொன்றாக
சரம்2 = இ + சரம்2
முடி
பின்கொடு சரம்2
முடி
நிரல்பாகம் மீண்டும்திருப்புக (சரம்1)
## இரண்டாம் வகை
சரநீளம் = len(சரம்1)
சரம்2 = ""
@(எண் = 0, எண் < சரநீளம், எண் = எண் + 1) ஆக
சரம்2 = எடு(சரம்1, எண்) + சரம்2
முடி
பின்கொடு சரம்2
முடி
அ = உள்ளீடு("ஓர் எழுத்துச் சரத்தைத் தாருங்கள் ")
பதிப்பி "நீங்கள் தந்த எழுத்துச் சரம்" அ
பதிப்பி "அதனை முதல் வகையில் திருப்பியுள்ளோம்: " திருப்புக(அ)
பதிப்பி "வேறொரு வகையில் திருப்பியுள்ளோம்: " மீண்டும்திருப்புக(அ)
You may also check:How to resolve the algorithm Chinese zodiac step by step in the BASIC programming language
You may also check:How to resolve the algorithm Natural sorting step by step in the Scheme programming language
You may also check:How to resolve the algorithm Determine sentence type step by step in the FreeBASIC programming language
You may also check:How to resolve the algorithm Palindrome detection step by step in the Ol programming language
You may also check:How to resolve the algorithm Element-wise operations step by step in the Go programming language