- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
4 Posted Topics
Re: 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 … | |
Re: 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: … | |
Re: #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 … | |
Re: [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 … |
The End.