Posts by Lucas Bonafé • 49 points
4 posts
-
1
votes1
answer1821
viewsQ: The data property does not exist in type 'Intrinsicattributes & Intrinsicclassattributes & Readonly & Readonly<{ Children?: Reactnode; }>'. ts(2322)
Português: The type '{ data: Undefined; }' cannot be assigned to the type 'Intrinsicattributes & Intrinsicclassattributes & Readonly & Readonly<{ Children?: Reactnode; }>'. A…
-
0
votes1
answer34
viewsQ: Function Result in an Object Array?
How to turn the output of this function into a array? In the future I would like to call only the result of a specific line, such as $palavraschave[1]. <?php $url=…
-
1
votes2
answers2890
viewsA: Loop "for" inside another "for" (nested repetition)
Last release, I managed to leave the output of the columns side by side: using System; namespace ConsoleApp1{ class Program{ static void Main(string[] args){ Console.WriteLine("\nTABUADA…
-
2
votes2
answers2890
viewsQ: Loop "for" inside another "for" (nested repetition)
I’d like to spare those 9 repeated lines in my code: for (int n1 = 1, n2 = 1; n2 < 11;){ Console.Write(n1 + "x" + n2 + "=" + (n1 * n2) + "\t"); n1++;//1 Console.Write(n1 + "x" + n2 + "=" + (n1 *…