Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
~636 People Reached
About Me
proud to be INDIAN
Favorite Forums
Favorite Tags
c++ x 1
mathematics x 1
1 Posted Topic
Re: // find total marks of 30 students using for loop #include <iostream> using namespace std; int main() { int marks[30]; int totalmarks = 0; for(int j = 0; j < 30; j++ ) { cout << "Enter marks of student " << j+1; cin >> marks[j]; totalmarks = totalmarks + … |
The End.