Posts by Andre Cavalcante • 91 points
3 posts
-
0
votes1
answer37
viewsA: Write number from 0 to 10000 in c++ language
You’re using the wrong technique to create numbers in full. You should first map the parts that make up a generic number in base 10 to the full text. This is done statically (vectors). Only then do…
canswered Andre Cavalcante 91 -
0
votes2
answers597
viewsA: Many to many ratio between various tables
Yes there are several other ways. One of them: makes a people table with people’s names and data and a table for relationships, in which you have the type of relationship, whether parent or child…
-
9
votes7
answers87300
viewsA: How to validate with regex a string containing only letters, whitespace and accented letters?
Completing the reply of the bfavareto, when putting regular expression code for names, remember that we can have situations like Antonio D'Ávila. In these cases, also insert the apostrophe. And the…