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
3205 - Calc Funct
(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="python3" line="1"> def validate_input(n, elements): if not (1 < n < 100): print("Dimensiunea n trebuie să fie în intervalul (1, 100).") return False if len(set(elements)) != n or any(x <= 0 or x >= 1000000000 for x in elements): print("Elementele trebuie să fie distincte, naturale și mai mici decât 1.000.000.000.") return False return True def pozitie_maxim(tablou, numar_elemente): poz_maxim = 1 for i in range(2, numar_elemente + 1): if tablou[i] > tablou[poz_maxim]: poz_maxim = i return poz_maxim def minim(tablou, numar_elemente): poz_minim = 1 for i in range(2, numar_elemente + 1): if tablou[i] < tablou[poz_minim]: poz_minim = i return poz_minim def interschimba(a, b): return b, a def afiseaza_interval(tablou, pozInit, pozFin, file=None): for i in range(pozFin, pozInit - 1, -1): print(tablou[i], end=" ", file=file) def main(): # Citire dimensiune și elemente din fișierul de intrare with open("calcfunctIN.txt", "r") as f: n = int(f.readline()) vector = [0] + list(map(int, f.readline().split())) # Verificare că elementele sunt distincte, naturale și mai mici decât 1.000.000.000 și a lui n if not validate_input(n, vector[1:]): return # Găsirea pozițiilor maximului și minimului poz_maxim = pozitie_maxim(vector, n) poz_minim = minim(vector, n) # Deschidere fișier pentru scriere with open("calcfunctOUT.txt", "w") as f: # Afișare în ordine descrescătoare a indicilor între minim și maxim afiseaza_interval(vector, min(poz_maxim, poz_minim), max(poz_maxim, poz_minim), file=f) 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