#include <stdio.h>
#include <stdlib.h>
int mani()
{
char name[100];
char lastname[100];
char phon;
float weight;
float height;
float BMI ;
scanf ( "%s" ,&me) :
printf("Please put lastname: "); scanf("%s" ,&lastname);
scanf("%s" ,&phon);
printf("Please put weight: "); scanf("%f",&weight);
printf("Please put height: "); scanf("%f",&height);
BMI = weight/(height*height);
printf("My name is %s(n",name
); printf("My lastname is %s(n",lastname
); printf("My phon is %s(n",phon
); printf("My weight is %f(n",weight
); printf("My height is %f(n",height
);
}
I2luY2x1ZGUgIDxzdGRpby5oPgojaW5jbHVkZSAgPHN0ZGxpYi5oPgppbnQgbWFuaSgpCnsgIAogICAgY2hhciBuYW1lWzEwMF07CiAgICAgY2hhciBsYXN0bmFtZVsxMDBdOwogICAgY2hhciBwaG9uOwogICAgZmxvYXQgd2VpZ2h0OwogICAgZmxvYXQgaGVpZ2h0OwogICAgZmxvYXQgQk1JIDsKICAgIHByaW50ZigiUGxlYXNlIHB1dCBuYW1lOiAiKTsKICAgIHNjYW5mICggIiVzIiAsJm1lKSA6CiAgICBwcmludGYoIlBsZWFzZSBwdXQgbGFzdG5hbWU6ICIpOwogICAgc2NhbmYoIiVzIiAsJmxhc3RuYW1lKTsKICAgIHByaW50ZigiUGxlYXNlIHB1dCBwaG9uOiAiKTsKICAgIHNjYW5mKCIlcyIgLCZwaG9uKTsKICAgIHByaW50ZigiUGxlYXNlIHB1dCB3ZWlnaHQ6ICIpOwogICAgc2NhbmYoIiVmIiwmd2VpZ2h0KTsKICAgIHByaW50ZigiUGxlYXNlIHB1dCBoZWlnaHQ6ICIpOwogICAgc2NhbmYoIiVmIiwmaGVpZ2h0KTsKICAgIEJNSSA9IHdlaWdodC8oaGVpZ2h0KmhlaWdodCk7CiAgICBzeXN0ZW0oImNscyIpOwogICAgcHJpbnRmKCJNeSBuYW1lIGlzICVzKG4iLG5hbWUpOwogICAgcHJpbnRmKCJNeSBsYXN0bmFtZSBpcyAlcyhuIixsYXN0bmFtZSk7CiAgICBwcmludGYoIk15IHBob24gaXMgJXMobiIscGhvbik7CiAgICBwcmludGYoIk15IHdlaWdodCBpcyAlZihuIix3ZWlnaHQpOwogICAgcHJpbnRmKCJNeSBoZWlnaHQgaXMgJWYobiIsaGVpZ2h0KTsKICAgIHByaW50ZigiTXkgQk1JIGlzICVmKG4iLEJNSSk7CiAgICAKfQ==
#include <stdio.h>
#include <stdlib.h>
int mani()
{
char name[100];
char lastname[100];
char phon;
float weight;
float height;
float BMI ;
printf("Please put name: ");
scanf ( "%s" ,&me) :
printf("Please put lastname: ");
scanf("%s" ,&lastname);
printf("Please put phon: ");
scanf("%s" ,&phon);
printf("Please put weight: ");
scanf("%f",&weight);
printf("Please put height: ");
scanf("%f",&height);
BMI = weight/(height*height);
system("cls");
printf("My name is %s(n",name);
printf("My lastname is %s(n",lastname);
printf("My phon is %s(n",phon);
printf("My weight is %f(n",weight);
printf("My height is %f(n",height);
printf("My BMI is %f(n",BMI);
}