#109
Paritate
Să se scrie un program care citeşte de la tastatură un număr natural şi verifică dacă numărul este par sau impar.
Problema | Paritate | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53812899 | Utilizator | |
Fișier | paritate.cpp | Dimensiune | 538 B |
Data încărcării | 12 Noiembrie 2024, 11:53 | Scor / rezultat | Eroare de compilare |
paritate.cpp:10:7: error: expected nested-name-specifier before 'neamspace' using neamspace std; ^ paritate.cpp:10:7: error: 'neamspace' has not been declared paritate.cpp:10:17: error: expected ';' before 'std' using neamspace std; ^ paritate.cpp:10:17: error: 'std' does not name a type paritate.cpp: In function 'int main()': paritate.cpp:14:5: error: 'cin' was not declared in this scope cin>>n; ^ paritate.cpp:14:5: note: suggested alternative: In file included from paritate.cpp:9:0: /usr/include/c++/4.8/iostream:60:18: note: 'std::cin' extern istream cin; /// Linked to standard input ^ paritate.cpp:15:17: error: 'cout' was not declared in this scope if (n%2==0) cout<<n<<"este par"; ^ paritate.cpp:15:17: note: suggested alternative: In file included from paritate.cpp:9:0: /usr/include/c++/4.8/iostream:61:18: note: 'std::cout' extern ostream cout; /// Linked to standard output ^ paritate.cpp:16:10: error: 'cout' was not declared in this scope else cout<<n<<"este impar"; ^ paritate.cpp:16:10: note: suggested alternative: In file included from paritate.cpp:9:0: /usr/include/c++/4.8/iostream:61:18: note: 'std::cout' extern ostream cout; /// Linked to standard output ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Paritate 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ă.