MHMahmoud Hammaminmahmoudblog.dev00BMI calculatorJul 29, 2023 · 1 min read · #include <stdio.h> int main() { double weight; double height; printf("Enter your Weight in kilograms: "); scanf("%lf", &weight); printf("Enter your Height in meters: "); scanf("%lf", &height); double s = (height ...Join discussion
MHMahmoud Hammaminmahmoudblog.dev00Grading system for school with CJul 27, 2023 · 1 min read · #include <stdio.h> int main() { int score ; printf("Please enter your score:\n"); scanf("%d", &score); if (score >= 80 && score <= 100) { printf("Your score is %i grade A", score); } else if (score >= 70 && scor...Join discussion