#include<stdio.h>
#include<conio.h>
main()
{
float turkce, sosyal, matematik, fen, ygs1, ygs2, ygs3, ygs4, ygs5, ygs6;
printf("turkçe neti giriniz:");
scanf("%f",&t);
printf("sosyal neti giriniz:");
scanf("%f",&s);
printf("matematik neti giriniz:");
scanf("%f",&m);
printf("fen neti giriniz:");
scanf("%f",&f);
ygs1=(t*1.975)+(s*1.115)+(m*3.750)+(f*3.160);
ygs2=(t*1.975)+(s*1.115)+(m*2.760)+(f*4.150);
ygs3=(t*3.920)+(s*3.215)+(m*1.840)+(f*1.025);
ygs4=(t*2.900)+(s*4.250)+(m*1.825)+(f*1.025);
ygs5=(t*3.690)+(s*2.175)+(m*3.110)+(f*1.025);
ygs6=(t*3.325)+(s*1.115)+(m*3.450)+(f*2.110);
printf("\n\n YGS1= %f",ygs1);
printf("\n\n YGS2= %f",ygs2);
printf("\n\n YGS3= %f",ygs3);
printf("\n\n YGS4= %f",ygs4);
printf("\n\n YGS5= %f",ygs5);
printf("\n\n YGS6= %f",ygs6);
}