#3063
luna
Scrieți un program care citește un număr natural nenul n
și care afișează numele lunii calendaristice corespunzătoare numărului n
.
Problema | luna | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54591713 | Utilizator | |
Fișier | luna.cpp | Dimensiune | 673 B |
Data încărcării | 03 Decembrie 2024, 10:40 | Scor / rezultat | Eroare de compilare |
luna.cpp: In function 'int main()': luna.cpp:8:9: error: case label '1' not within a switch statement case 1:cout << "ianuarie";break; ^ luna.cpp:8:35: error: break statement not within loop or switch case 1:cout << "ianuarie";break; ^ luna.cpp:10:9: error: case label '2' not within a switch statement case 2:cout << "februarie";break; ^ luna.cpp:10:36: error: break statement not within loop or switch case 2:cout << "februarie";break; ^ luna.cpp:12:9: error: case label '3' not within a switch statement case 3:cout << "martie";break; ^ luna.cpp:12:33: error: break statement not within loop or switch case 3:cout << "martie";break; ^ luna.cpp:14:9: error: case label '4' not within a switch statement case 4:cout << "aprilie";break; ^ luna.cpp:14:34: error: break statement not within loop or switch case 4:cout << "aprilie";break; ^ luna.cpp:16:8: error: case label '5' not within a switch statement case 5:cout << "mai";break; ^ luna.cpp:16:29: error: break statement not within loop or switch case 5:cout << "mai";break; ^ luna.cpp:18:9: error: case label '6' not within a switch statement case 6:cout << "iunie";break; ^ luna.cpp:18:32: error: break statement not within loop or switch case 6:cout << "iunie";break; ^ luna.cpp:20:9: error: case label '7' not within a switch statement case 7:cout << "iulie";break; ^ luna.cpp:20:32: error: break statement not within loop or switch case 7:cout << "iulie";break; ^ luna.cpp:22:9: error: case label '8' not within a switch statement case 8:cout << "august";break; ^ luna.cpp:22:33: error: break statement not within loop or switch case 8:cout << "august";break; ^ luna.cpp:24:9: error: case label '9' not within a switch statement case 9:cout << "septembrie";break; ^ luna.cpp:24:37: error: break statement not within loop or switch case 9:cout << "septembrie";break; ^ luna.cpp:26:9: error: case label '10' not within a switch statement case 10:cout << "octombrie";break; ^ luna.cpp:26:37: error: break statement not within loop or switch case 10:cout << "octombrie";break; ^ luna.cpp:28:9: error: case label '11' not within a switch statement case 11:cout << "noiembrie";break; ^ luna.cpp:28:37: error: break statement not within loop or switch case 11:cout << "noiembrie";break; ^ luna.cpp:30:9: error: case label '12' not within a switch statement case 12:cout << "decembrie";break; ^ luna.cpp:30:37: error: break statement not within loop or switch case 12:cout << "decembrie";break; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema luna 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ă.