Skip to content

Commit

Permalink
Update and rename VucutKitleİndex.java to VucutKitle.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Dedos22 authored May 24, 2023
1 parent ab0303f commit 06cc6b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VucutKitleİndex.java → VucutKitle.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//Kilo (kg) / Boy(m) * Boy(m)

import java.util.Scanner; //Kullanıcıdan değer almayı sağlar
public class VucutKitleİndex{
public class VucutKitle{
public static void main(String[] args){
//Değişkenler

Expand All @@ -18,7 +18,7 @@ public static void main(String[] args){
boy=inp.nextDouble();
System.out.print("Lütfen kilonuzu giriniz(kg):");
kilo=inp.nextDouble();
indeks=kilo/boy^2;
indeks=kilo/(boy*boy);
System.out.println("Vücut Kitle İndeksiniz :"+ indeks);


Expand Down

0 comments on commit 06cc6b6

Please sign in to comment.