हिंदी
तमिलनाडु बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान कक्षा ११

The following code sums up the total of all students name starting with ‘S’ and display it. Fill in the blanks with required statements. struct student {int exam no,lang,eng,phy,che,mat - Computer Science

Advertisements
Advertisements

प्रश्न

The following code sums up the total of all students name starting with ‘S’ and display it. Fill in the blanks with required statements.

struct student {int exam no,lang,eng,phy,che,mat,csc,total;char name[15];};
int main()
{
student s[20];
for(int i=0;i<20;i++)
{ ______ //accept student details }
for(int i=0;i<20;i++)
{
______ //check for name starts with letter “S”
______ // display the detail of the checked name
}
return 0;
}

कोड लेखन

उत्तर

#include <iostream>
#include <cstring> // Include for string handling
using namespace std;

struct student {
    int exam_no, lang, eng, phy, che, mat, csc, total;
    char name[15];
};

int main() {
    student s[20];

    // Accept student details
    for (int i = 0; i < 20; i++) {
        cout << "\nEnter student name: ";
        cin >> s[i].name;
        cout << "Enter student exam number: ";
        cin >> s[i].exam_no;
        cout << "Enter Language Mark: ";
        cin >> s[i].lang;
        cout << "Enter English Mark: ";
        cin >> s[i].eng;
        cout << "Enter Physics Mark: ";
        cin >> s[i].phy;
        cout << "Enter Chemistry Mark: ";
        cin >> s[i].che;
        cout << "Enter Maths Mark: ";
        cin >> s[i].mat;
        cout << "Enter Computer Science Mark: ";
        cin >> s[i].csc;
        s[i].total = s[i].lang + s[i].eng + s[i].phy + s[i].che + s[i].mat + s[i].csc;
    }

    cout << "\nDetails of students whose name starts with letter S:\n";
    
    // Check for names starting with the letter "S" and display details
    for (int i = 0; i < 20; i++) {
        if (s[i].name[0] == 'S') {
            cout << "\nName: " << s[i].name;
            cout << "\nTotal Marks: " << s[i].total << endl;
        }
    }

    return 0;
}

Output:

Details of students whose name starts with the letter S:

Name: Sam
Total Marks: 488

Name: Steve
Total Marks: 506 

shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 12: Arrays and Structures - Evaluation - Section - C [पृष्ठ २२४]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 11 TN Board
अध्याय 12 Arrays and Structures
Evaluation - Section - C | Q 3. | पृष्ठ २२४
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×