Write a program accepts two integer values and a math operator and depending on the operator calculate the result of the operaiton. Operator can be one of + - / * characters.
First line of input indicates number of cases (T) then 3xT lines of input are provided.
برنامه ای بنویسید که دو عدد و یک عملگر از ورودی (رشته یک کاراکتری) دریافت کند و با توجه به عملگر عملیات ریاضی را انجام دهد. (عملگر یکی از چهار کاراکتر + - / * میتواند باشد) اولین خط ورودی تعداد کیس ها و سپس به ازای هر کیس سه خط ورودی ارایه می شود.
3
2
+
4
1
-
10
80
*
20
6
-9
1600