yasinyasar

MrPLC Member
  • Content count

    8
  • Joined

  • Last visited

Community Reputation

0 Neutral

About yasinyasar

  • Rank
    Newbie

Profile Information

  • Country Turkey
  1. 5 engine equal aging

    thank you for your help
  2. 5 engine equal aging

    fotovoltaik We can find the smallest number using arrow min.We cannot rank 5 numbers from smallest to largest.I have a level meter. When level1 comes, young motor1 is activated. When level 2 comes, young motor2 is activated. When level3 comes, young motor comes into play. It continues in this way.   I thought a little bit and made the algorithm. I can sort the numbers. Now I'm thinking about how to start the engines in this order. I will be glad if anyone has any ideas. I am sharing the photo of the algorithm, if someone finds it useful, I will be happy.  
  3. 5 engine equal aging

    public static void selectionSort(int arr[]) { for (int i = 0; i < arr.length; i++) { int min = i; for (int j = i + 1; j < arr.length; j++) { if (arr[j] < arr[min]) { min = j; } } int temp = arr[i]; arr[i] = arr[min]; arr[min] = temp; } } this is what i want to do but i can't write as st in sysmac.
  4. 5 engine equal aging

    I am a new member and I am writing using translate. I'll pay attention from now on. I'm sorry. I memorize the running times of the engines, but I don't know how to sort them from smallest to largest. I don't want anyone to write a program. I just wanted help on how to proceed.
  5. 5 engine equal aging

    Priority will be given to the operating hours of the level motors that will operate according to a common level transmitter with 5 motors. how can I do?
  6. 5 engine equal aging

    How to make 5 engine equal aging software? is there an example?