Guest User

Untitled

a guest
Dec 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.15 KB | None | 0 0
  1. static bool Memuyan(int[] arr)
  2. {
  3.     for (int i = 0; i < arr.Length; i++)
  4.         if (arr[i] > arr[i + 1])
  5.             return false;
  6.     return true;
  7. }
Add Comment
Please, Sign In to add comment