Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
3257 - Cifre Romane 1
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Rezolvare == <syntaxhighlight lang="python"> def roman_to_arabic(roman): # Dicționar care mapează cifrele romane la echivalentele lor arabe roman_numerals = {'I': 1, 'V': 5, 'X': 10, 'L': 50, 'C': 100, 'D': 500, 'M': 1000} arabic = 0 prev_value = 0 # Parcurgem cifrele romane de la dreapta la stânga for numeral in reversed(roman): value = roman_numerals[numeral] # Dacă cifra curentă este mai mică decât cifra precedentă, scădem valoarea curentă if value < prev_value: arabic -= value else: # Altfel, adunăm valoarea curentă arabic += value prev_value = value return arabic def is_valid_roman_numeral(roman): # Verificăm dacă cifrele romane respectă regulile de scriere combinatii_invalide = ['IIII', 'VIV', 'XXXX', 'LXL', 'CCCC', 'DID', 'CMCM', 'CDCD', 'XCXC', 'XLXL', 'IXIX', 'IVIV'] for combinatie in combinatii_invalide: if combinatie in roman: return False valoare_araba = roman_to_arabic(roman) if 1 <= valoare_araba <= 3999: return True return False def main(): try: # Deschidem fișierul de intrare în modul citire și pe cel de ieșire în modul scriere with open('cifre_romane1in.txt', 'r') as file_in, open('cifre_romane1out.txt', 'w') as file_out: # Citim cifrele romane din fișier cifre_romane = file_in.readline().strip() # Verificăm dacă cifrele romane sunt valide if is_valid_roman_numeral(cifre_romane): # Convertem cifrele romane în cifre arabe și scriem rezultatul în fișierul de ieșire cifre_arabe = roman_to_arabic(cifre_romane) file_out.write(str(cifre_arabe) + '\n') else: # Dacă cifrele romane nu sunt valide, scriem un mesaj corespunzător în fișierul de ieșire file_out.write('Numar invalid\n') except FileNotFoundError: print("Fisierul de intrare nu exista!") if __name__ == "__main__": main() </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width