Skip to content

Instantly share code, notes, and snippets.

@mrnirva
Created September 2, 2020 23:50
Show Gist options
  • Save mrnirva/493c0218e524476744e60368361d300d to your computer and use it in GitHub Desktop.
Save mrnirva/493c0218e524476744e60368361d300d to your computer and use it in GitHub Desktop.
package ciktibicimleme;
public class CiktiBicimleme {
public static void main(String[] args) {
float hesabimdakiMiktar = 14.9154f;
System.out.printf("%.2f \n" ,hesabimdakiMiktar);
// % İşaretinden sonra . koyup kaç hane göstereceğini yazarız
// Örn: %.2 (Virgülden sonraki 2 haneyi göster demek)
// Sondaki f ise verinin tipini verir yani float'ın simgesi
// 14,92 çıktısını verir
// Yuvarlayarak gösterir
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment