Skip to content

Instantly share code, notes, and snippets.

@seyyah
Last active December 27, 2015 11:49
Show Gist options
  • Select an option

  • Save seyyah/7321769 to your computer and use it in GitHub Desktop.

Select an option

Save seyyah/7321769 to your computer and use it in GitHub Desktop.
Harita Mühendisliği Bölümü Bilgisayara Giriş Dersi, 2013-2014 Güz
clc
as = input('Arasinav');
ds = input('Final');
ort = as * 40/100 + ds * 60/100
clc
disp('Vucut-Kitle Index Hesaplama Programina Hosgeldiniz');
boy = input('Boyunuz: ');
kilo = input('Kilonuz: ');
BMI = kilo / boy^2
clc
disp('Vucut-Kitle Index Hesaplama Programina Hosgeldiniz');
boy = input('Boyunuz: ');
kilo = input('Kilonuz: ');
BMI = kilo / boy^2
if BMI < 25
disp('Ideal');
else
disp('Zayif/Sisman');
end
clc
disp('Vucut-Kitle Index Hesaplama Programina Hosgeldiniz');
boy = input('Boyunuz: ');
kilo = input('Kilonuz: ');
BMI = kilo / boy^2
if BMI > 18.5 & BMI < 25
disp('Ideal');
else
disp('Zayif/Sisman');
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment