Posts by michelvmelo • 43 points
4 posts
-
1
votes1
answer289
viewsQ: Remove duplicates based on one column value
I would like to know how I can perform the following filter: ===> That is, how to remove duplicates in the "action" column, but leaving the record with higher priority (in this case, '1' is the…
-
0
votes1
answer1160
viewsQ: How to view a BD Access form directly on a website?
I want to put the information of a .mdb on a website, to make it available to the public. When opened in Access, it has forms to carry out queries. I can have a website that directly displays these…
-
2
votes2
answers967
viewsQ: How to read a random amount of integers in C?
I need to create a way to read integers in the same input, and the amount of integers entered is random every time the program is run. I tried to perform the following algorithm: #include…
casked michelvmelo 43 -
0
votes2
answers5760
viewsQ: Read multiple integers in the same input in C
Basically, I must enter a number that represents the amount of integers to be entered. Then insert the integers themselves, separated by space, into the same input. Example: 5 1 2 3 4 5 I tried to…