Posts by Mateus Felipe • 85 points
5 posts
-
1
votes1
answer25
viewsA: I wanted to know why not read the functions on the screen
Your functions are being read and are working, just calling your function definelivro, in Function main, that is not correct for what you defined in your program You set at the beginning of your…
c++answered Mateus Felipe 85 -
3
votes1
answer292
viewsQ: Where can I find the reference for defining dates of the dd/mm/yyyy format?
I’m doing the documentation of an API, but I don’t know where I can find what defines the date in the Brazilian, Italian, etc., formatting styles dd/mm/yyyy. Dates in format yyyy-mm-dd are defined…
-
1
votes1
answer183
viewsQ: How to place dots at the beginning and end of the selected word as well as quotation marks
I would like to know how I can make Sublime Text 3 add a point . at the beginning and end of the word I selected, in the same way as with the characters ' and ". When we select a word in Sublime and…
-
0
votes0
answers78
viewsQ: I need to create a Mysql Trigger to create a table with the name containing the id of the last row inserted in another table
I would like every time a row was inserted into the chats table, a new table was created. The Table must have the name of the value inserted in the chat_id column of the chats table. Ex: If the last…
-
2
votes2
answers823
viewsQ: Swap Long for Biginteger or Bigdecimal?
I am trying to read from the keyboard a very large integer number, I saw that there are the type Biginteger or Bigdecimal, I do not know if they are bigger than the Long. wanted to read from the…