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!
Solved! Go to Solution.
It looks like a student's task. What exactly does this piece of code?
resolved
User | Count |
---|---|
95 | |
48 | |
21 | |
19 | |
18 |
User | Count |
---|---|
137 | |
54 | |
42 | |
41 | |
30 |