Hello again,
Now I have following question
Is this possible to do in UiPath, simple way, our course has started… so here can’t be any complex answer or I haven’t understood this task right way.
"Do multiplication table 1 -10 with loop and print is with Write Line
I know that it can be made by Python
for i in range(1,11):
for j in range(1,11):
print(i * j, end="\t")
print("")
I do one version with Do While, with two different variables and condition
(figure1 < 10) And (figure2 < 10) + Asisgn as Sum = figure1 * figure2
and with Write Line I get answers like below, maybe it is enough for teacher…
1 x 1 = 1
2 x 2 = 4
3 x 3 = 9
With best regards
Hanna