اكتب برنامج C لقراءة رقم التسلسل , اسم وعلامات ثلاثة مواضيع وحساب المجموع والنسبة المئوية و الفئة
- برمجة
- برمجة سي c
- 2021-05-04
- Wassim
الأجوبة
/*Write a C program to read roll no, name and marks of three subjects and calculate the total, percentage and division*/
#include <stdio.h>
#include <string.h>
void main()
{
int rl,phy,che,ca,total;
float per;
char nm[20],div[10];
printf("Input the Roll Number of the student :");
scanf("%d",&rl);
printf("Input the Name of the Student :");
scanf("%s",nm);
printf("Input the marks of Physics, Chemistry and Computer Application : ");
scanf("%d%d%d",&phy,&che,&ca);
total = phy+che+ca;
per = total/3.0;
if (per>=60)
strcpy(div,"First");
else
if (per<60&&per>=48)
strcpy(div,"Second");
else
if (per<48&&per>=36)
strcpy(div,"Pass");
else
strcpy(div,"Fail");
printf("\nRoll No : %d\nName of Student : %s\n",rl,nm);
printf("Marks in Physics : %d\nMarks in Chemistry : %d\nMarks in Computer Application : %d\n",phy,che,ca);
printf("Total Marks = %d\nPercentage = %5.2f\nDivision = %s\n",total,per,div);
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال