August 6, 2020
Check the increment array, reduction
Threads: Nhập mảng số gồm n phần tử. Kiểm tra xem đây là mảng tăng dần, hay giảm dần, hay không tăng không giảm. Ascending array is larger array that follows the previous number, mảng giảm dần là số trước lớn hơn số sau.
Input: The first line is an integer n. The second line 2 n is an integer array, of numbers separated by spaces.
Output: Nếu mảng tăng dần in ra “TANG”, Nếu mảng giảm dần in ra “GIAM” nếu không tăng, không giảm thì in ra “KHONG”.
For example 1: Input: 4 3 5 7 8 Out:TANG Ví dụ 2: Input: 4 9 7 7 1 Out:KHONG
You are not logged in? Log in to Submit Now!