Posts by Kaio Fernandes • 148 points
3 posts
-
0
votes1
answer533
viewsQ: Indefinite reference in C++
I’m studying c++ and found a problem when working with object orientation, I followed some tutorials but it didn’t work. Bill. h #ifndef CONTA_H #define CONTA_H #include <string> using…
-
3
votes1
answer58
viewsA: Result while PHP
You can put the images inside a div and align that div, like this. In html <div class="imagem"><img src="imagem-passada-no-while" /></div> <div class="imagem"><img…
-
10
votes2
answers57301
viewsQ: How to limit decimal places?
I have a question, it has to limit the number of decimal places in C++? float x = 2.958; Instead of rounding up or down using floorf, roundf, can only take the two numbers after the comma? that…