Hello, I am new to the Power Platform and I would like to create a Power Automate flow that does exactly the same as this java code:
import java.util.*;
public class Main
{
public static void main (String[] args)
{
int NombreDeNiveau = 10;
List<String> SousFiliere = Arrays.asList("Beurrerie44", "Beurrerie29", "Creperie");
for (int nombre =0; nombre <= NombreDeNiveau; nombre++) {
for (int i = 0; i < SousFiliere.size(); i++) {
System.out.println(SousFiliere.get(i));
}
}
}
}
But after many tries I still can't. Could you help me please :(? Thanks in advance!
resolved
It looks like a student's task. What exactly does this piece of code?
Michael E. Gernaey
566
Super User 2025 Season 1
David_MA
516
Super User 2025 Season 1
stampcoin
492