Posts by BaaDe • 45 points
3 posts
-
1
votes1
answer112
viewsQ: How NOT to round up figures?
I need an exact value but my code always rounds down: float percentageUsed = 6050492416 / 8258998272; System.out.println(String.format("Porcentagem: %.2f", percentageUsed)); In case I had to return…
-
1
votes1
answer79
viewsQ: Wrong timezone in JAVA
I’m making an application where I need to show in a graph the real time of the capture of a certain data I tested that code: SimpleDateFormat format = new SimpleDateFormat("hh:mm:ss");…
-
0
votes1
answer68
viewsQ: Transcribing from Mysql to SQL
How does this Mysql code look in SQL (in Dbeaver with Azure connection)? I just need to change SELECT to work in SQL CREATION OF TABLES -- VACANCY TABLE create table vagas ( idSensor int primary…