ГлавнаяСборникиТурнирыРазделыФорумыУчастникиПечатьПомощьО системе

Разделы > Ad-Hoc > задача:


50393 - Palindromic Numbers

Гость
• Вопросы к жюри (2)

Задачи раздела

• 50298 - Coins
• 50303 - Pattern
• 50882 - FizzBuzz
• 50322 - Snake Pattern
• 50302 - Paper Scissors Rock
• 50312 - Sales Bar Chart
• 50313 - Pattern Displays
• 50375 - Area of Circles
• 50393 - Palindromic Numbers
• 50396 - Cinema Tickets - 1
• 50325 - How much time passed?
• 50366 - Student Averages (2 Grades)
• 50406 - Draw Pattern 178
• 50416 - Placing Dominoes on Chess...
• 50477 - Character Pyramids
• 50498 - K-Means
• 50505 - kht Puzzle

Обратная связь

Если у вас есть предложения или пожелания по работе Contester, посетите форум сайта www.contester.ru.

Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб.
Prepared by Ibrahim Mesecan.

The Number of Palindromic Numbers

Note: This question has been designed for C & C++. It will not work for other programming languages.
A number is palindromic, if it's read from left to right and from right to left the same. e.g. StackcatS is a palindromic word, but Cat is not.

Question: Assume that you are given the following functions in the header file Palin.h :

  • bool palindrome(int num); // decides if the given number is palindromic or not
  • int getNum(); // this function gets and returns a number
  • void showResult(int num);// shows the result on screen

Use the functions above in your program, and, get 5 numbers (using the function getNum(); ). And then, show the number of palindromic numbers (using the function showResult(int num); )
Note: For C and C++, you can include the functions using the following statement.
  #include "utils/Palin.h"

Input specification
Get five numbers through the function getNum();

Output specification
Show the result through the function showResult(int num);

Для отправки решений необходимо выполнить вход.

www.contester.ru