HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Volumes > Repetition (Loops) > problem:


040. 50335 - Five Math Operators

Guest
• Review clarifications (1)

Volume problems

• 025- 2013-Nov-01. 50328 - How far ...
• 026. 50399 - Mobile Base Station
• 026. 50487 - Radius of Inscribed Circle
• 027. 50548 - Albanian Airlines
• 028. 50483 - Group Total
• 030. 50584 - Total invoice amount
• 033. 50588 - Processing the list of n...
• 035. 50573 - Count and Sum
• 040. 50335 - Five Math Operators
• 044. 50597 - Drawing Diamonds
• 045. 50462 - Class Average (3 Gra...
• 050. 50450 - Last Appereance of a ...
• 058. 50574 - Triangular Numbers
• 060. 50362 - Pythagorean Numbers
• 060. Problem 2
• 065. 50394 - Water Bills
• 070. 50465 - How many students h...

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 4000/7000/7000/7000 ms. Memory limit 65000/65000/65000/65000 Kb.
bfs.

Five Math Operators

  Write a program that gets two integers and an operator from the keyboard and then does described operation using the given numbers.

  There are five operations:

  • '+' Addition: adds the second number to the first number
  • '-' Subtraction: Subtracts the second number from the first number
  • '*' Multiplication: Multiplies the first and the second numbers
  • '/' Integer division: Divides the first number by the second number producing integer result
  • '%' Modulus: Gives the remainder when the first number is divided by the second number

Input specification
  First, you will be given a number (n where 1 ≤ n ≤ 10). Then, each of the following n lines will contain an integer followed by a char and another integer: (e.g. 5+3). Char will be one of five operators (+, -, *, /, %) and the integers will be positive and less than 1000.

Output specification
  Show one number for every operation (line) which is the result of the given operator with the given numbers.

Sample Input:
  4
  45+20
  20-30
  7%3
  99/10

Sample Output:
  65
  -10
  1
  9


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

www.contester.ru