#623
Numere3
Având o pasiune pentru numere, Răzvan a inventat un nou joc pentru două persoane. Regulile jocului sunt simple: se aleg trei numere naturale a
, b
şi c
astfel încât a<b<c
. La fiecare pas, primul jucător adună la a
suma cifrelor lui a
, iar cel de-al doilea jucător scade din c
suma cifrelor lui c
, la pasul următor fiind luate în considerare noile valori obţinute pentru a
şi c
. Jocul se termină când, la un anumit pas, a
devine mai mare sau egal decât b
, caz în care primul jucător este declarat câştigător, sau când c
devine mai mic sau egal cu b
, situaţie în care câştigă al doilea jucător. Dacă la un pas se îndeplinesc ambele codiţii, jocul se termină la egalitate.
Cunoscând a
, b
şi c
se cere:
a) Suma cifrelor celor trei numere.
b) Valorile numerelor a
şi c
la fiecare pas al jocului, precum şi câştigătorul jocului.
Problema | Numere3 | Operații I/O |
numere3.in /numere3.out
|
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 2 MB
/
Stivă 1 MB
|
Id soluție | #53566806 | Utilizator | |
Fișier | numere3.cpp | Dimensiune | 2.99 KB |
Data încărcării | 05 Noiembrie 2024, 12:17 | Scor / rezultat | Eroare de compilare |
numere3.cpp:106:15: error: stray '#' in program c/=10;#include <bits/stdc++.h> ^ numere3.cpp: In function 'int CifA(int)': numere3.cpp:9:8: warning: unused variable 'p1' [-Wunused-variable] int p1=1,sA=0,cifA; ^ numere3.cpp: In function 'int CifB(int)': numere3.cpp:21:9: warning: unused variable 'p3' [-Wunused-variable] int p3=1, sB=0, cifB; ^ numere3.cpp: In function 'int CifC(int)': numere3.cpp:35:9: warning: unused variable 'p2' [-Wunused-variable] int p2=1, sC=0, cifC; ^ numere3.cpp: In function 'int main()': numere3.cpp:49:17: warning: unused variable 'i' [-Wunused-variable] int a,b,c,p,i; ^ numere3.cpp: At global scope: numere3.cpp:70:13: error: redefinition of 'std::ifstream fin' ifstream fin("numere3.in"); ^ numere3.cpp:4:10: error: 'std::ifstream fin' previously declared here ifstream fin("numere3.in"); ^ numere3.cpp:71:14: error: redefinition of 'std::ofstream fout' ofstream fout("numere3.out"); ^ numere3.cpp:5:10: error: 'std::ofstream fout' previously declared here ofstream fout("numere3.out"); ^ numere3.cpp: In function 'int CifA(int)': numere3.cpp:73:5: error: redefinition of 'int CifA(int)' int CifA(int a) ^ numere3.cpp:7:5: error: 'int CifA(int)' previously defined here int CifA(int a) ^ numere3.cpp:75:8: warning: unused variable 'p1' [-Wunused-variable] int p1=1,sA=0,cifA; ^ numere3.cpp: In function 'int CifB(int)': numere3.cpp:85:6: error: redefinition of 'int CifB(int)' }int CifB(int b) ^ numere3.cpp:19:6: error: 'int CifB(int)' previously defined here }int CifB(int b) ^ numere3.cpp:87:9: warning: unused variable 'p3' [-Wunused-variable] int p3=1, sB=0, cifB; ^ numere3.cpp: In function 'int CifC(int)': numere3.cpp:99:5: error: redefinition of 'int CifC(int)' int CifC(int c) ^ numere3.cpp:33:5: error: 'int CifC(int)' previously defined here int CifC(int c) ^ numere3.cpp:106:16: error: 'include' was not declared in this scope c/=10;#include <bits/stdc++.h> ^ numere3.cpp:106:25: error: 'bits' was not declared in this scope c/=10;#include <bits/stdc++.h> ^ numere3.cpp:106:30: error: 'stdc' was not declared in this scope c/=10;#include <bits/stdc++.h> ^ numere3.cpp:107:1: error: expected primary-expression before 'using' using namespace std; ^ numere3.cpp:107:1: error: expected ';' before 'using' numere3.cpp:113:1: error: a function-definition is not allowed here before '{' token { ^ numere3.cpp:198:1: error: expected '}' at end of input } ^ numere3.cpp:101:9: warning: unused variable 'p2' [-Wunused-variable] int p2=1, sC=0, cifC; ^ numere3.cpp:101:15: warning: unused variable 'sC' [-Wunused-variable] int p2=1, sC=0, cifC; ^ numere3.cpp:198:1: error: expected '}' at end of input } ^ numere3.cpp:198:1: warning: control reaches end of non-void function [-Wreturn-type] } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Numere3 face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.