Skip to main content

Write a program to create a structure named student that has name, roll, mark and remark as members. A program should read and display data entered by the user, except for remark which is set to 'P' if student has secured 40% or more marks in exam, otherwise it is set to 'F'. Assume appropriate data types.

Here is a program that creates a student structure with name, roll, mark, and remark members. The program reads in data from the user, calculates the remark based on the student's marks, and displays all the information back to the user.

#include <iostream>
#include <string>
using namespace std;

struct student {
    string name;
    int roll;
    double mark;
    char remark;
};
int main() {
    student s;
    // Read in student data
    cout << "Enter student name: ";
    getline(cin, s.name);
    cout << "Enter student roll number: ";
    cin >> s.roll;
    cout << "Enter student marks: ";
    cin >> s.mark;
    // Calculate student remark
    if (s.mark >= 40) {
        s.remark = 'P';
    } else {
        s.remark = 'F';
    }
    // Display student data
    cout << "Student name: " << s.name << endl;
    cout << "Roll number: " << s.roll << endl;
    cout << "Marks: " << s.mark << endl;
    cout << "Remark: " << s.remark << endl;
    return 0;
}

In this program, we first define the student structure with name, roll, mark, and remark members. We then declare a variable of type student named s.

Next, we read in the student data using std::cin and std::getline(). We read the name using std::getline() to allow for spaces in the name.

We then calculate the student's remark based on their marks. If the student has 40% or more marks, their remark is set to 'P', otherwise it is set to 'F'.

Finally, we display all the student data back to the user using std::cout.

Here is an example of the program in action:

Enter student name: John Doe
Enter student roll number: 1234
Enter student marks: 75.5
Student name: John Doe
Roll number: 1234
Marks: 75.5
Remark: P

Comments

Popular posts from this blog

Write a program using the algorithm count() to count how many elements in a container have a specified value.

 Here's an example program using the count() algorithm to count the number of occurrences of a specific value in a vector container: #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() {     vector<int> numbers = { 2, 5, 3, 7, 8, 5, 1, 5, 4 };          // count the number of occurrences of the value 5 in the vector     int count = count(numbers.begin(), numbers.end(), 5);          cout << "The number of occurrences of 5 in the vector is: " << count << endl;          return 0; } Output: The number of occurrences of 5 in the vector is: 3 Explanation: The program starts by creating a vector named numbers that contains several integer values. The count() algorithm is used to count the number of occurrences of the value 5 in the numbers vector. The function takes three arguments: the beginning and end iterators of...

What are Stub and Skeleton in Distributed Application? Explain its function with block diagram.

 Stub and Skeleton are two important components of distributed applications. A distributed application is a software system that runs on multiple computers connected through a network. It allows users to access resources and services on different computers as if they were on a local computer. In a distributed application, a client program on one computer sends a request to a server program on another computer. The server program processes the request and sends a response back to the client program. Stub and Skeleton help to facilitate this communication between the client and server programs. A Stub is a client-side proxy that represents the remote object on the client machine. It acts as a gateway for the client to communicate with the server. When a client invokes a method on the Stub, it marshals the arguments and sends them to the server over the network. The Stub then waits for the server to send a response. When the response is received, the Stub unmarshals the data and retur...

Explain the lifecycle of Servlet with block diagram.

 The lifecycle of a Servlet can be divided into several stages. Here's a block diagram that illustrates the different stages: Servlet API: The Servlet API provides a standard set of interfaces and classes for creating and interacting with Servlets. It is typically included in the web application's classpath as a JAR file. Servlet Container: The Servlet Container is a web server or application server that implements the Servlet API. It provides a runtime environment for executing Servlets and manages their lifecycle. Servlet Class: The Servlet Class is the Java class that implements the javax.servlet.Servlet interface. It contains the logic for processing HTTP requests and generating HTTP responses. init(): The init() method is called once when the Servlet is first loaded by the Servlet Container. It is used for initialization tasks, such as setting up database connections, loading configuration settings, or initializing other resources that will be used by the Servlet. service(...