Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
2 Commented Posts
0 Endorsements
Ranked #37.0K
~8K People Reached
Favorite Forums
Favorite Tags
c++ x 5

4 Posted Topics

Member Avatar for John A

My question is regarding he use of numeric_limits<streamsize>::max(). I found that this compiled in the command line using the C++ command in Bloodshed Dev-C++. However, when I tried to compile this code in a console project in Visual C++ 6.0, I was successful only after including headers for <stream> and …

Member Avatar for Khawaja Ghulam
11
7K
Member Avatar for calavan11

You could make the following modification, that is, removing the conditional statement when x == 0. #include <iostream> #include <cstdlib> using namespace std; int main() { //Declarations int intArray[10]; double dbltotal = 0.0; double dblaverage = 0.0; double dblmax = 0.0; double dblmin = 0.0; cout << "Enter a number: …

Member Avatar for calavan11
0
126
Member Avatar for cougarclaws

#include <iostream>//I/O #include <iomanip>//output manipulation library using namespace std; const double MALE_AGE_14_16 = .095; const double FEMALE_AGE_14_16 = .080; const double MALE_AGE_17_21 = .082; const double FEMALE_AGE_17_21 = .069; const double MALE_AGE_22_26 = .074; const double FEMALE_AGE_22_26 = .058; const double MALE_AGE_27_30 = .062; const double FEMALE_AGE_27_30 = .052; const …

Member Avatar for cougarclaws
0
134
Member Avatar for amirshami

[QUOTE=amirshami;837796]hullo am sory but i have some thing trigaring my mind can you please help me out find the solution for this 1write a function 2write aprogram "to readstudent's name ,examinationscore for 4 subjects ,compute their average score" please help me out with that using c++ thanks AMIRSHAMI[/QUOTE] Amirshami, I …

Member Avatar for V.V.Raman
0
132

The End.