1 write aprogram toread student's name examination number ,score for six subjects plus their average score using type one of c++
please i need this 30 minutes
2 using c++ write aprogram compute the number of students in a room (classes)

Recommended Answers

All 4 Replies

1 write aprogram toread student's name examination number ,score for six subjects plus their average score using type one of c++
please i need this 30 minutes
2 using c++ write aprogram compute the number of students in a room (classes)

I can do the second one:

int main( int argc, const char* argv[] )
{
    int studCount;
    std::cout << "How many students do you see?";
    std::cin >> studCount;
    std::cout << "Number of students in the room = " << studCount + 1;
    return 0;
}

but more information would be good, like when do you need it by?

We don't do homework for free.

We help you to fix and to understand the work you do.

commented: LOL, and they wanted it in 30 minutes. Perhaps begin with #include "miracles.h" with the prototype for void pigsMightFly( ); +29

Did you read this ? (probably not)

std::cout << "What did you get on this assigment? ";
std::cin >> iMark;
if (iMark == 0)
   return false;
else
   return true;
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.