Comp Sci C++: Simple summation program won't work correctly

AI Thread Summary
The discussion revolves around a C++ program intended to compute the sum of the series (1/3 + 1/6 + 1/9 + ... + 1/(3*n)) for a user-defined value of n. The main issue identified is that the program uses integer division, resulting in a final sum of zero. To resolve this, it is suggested to use floating-point division by modifying the expression to 1.0/iK instead of 1/iK. Additionally, participants emphasize the importance of proper type casting in calculations to avoid similar issues in the future. The conversation highlights common pitfalls in C++ programming related to data types and arithmetic operations.
Elbobo
Messages
145
Reaction score
0

Homework Statement


Write a C++ program to determine and print the sum of the series (1/3 + 1/6 + 1/9 + ... + 1/(3*n)) for a given value of n. In case you don't see the patter, the series can also be written as 1/(3*1) + 1/(3*2) +1/(3*3)+ ... + 1/(3*n). The value of n should be given interactively through the terminal. (You won't get credit if you do not use loops)


Homework Equations


Series = \frac{1}{3} \sum^{n}_{k=1} \frac{1}{k}

The Attempt at a Solution


//The following code gives me a final answer of 0. I can't understand why my FOR loop doesn't work. Please help!

#include <iostream>
#include <cmath>

using namespace std;

int main( void )
{
int iN = 0;
int iK = 1;

cout << "Input a positive integer value for n for the summation of 1/(3k), from k=1 to k=n." << endl;
cin >> iN;

if(iN <= 0)
{
cout << "Invalid value for n. Exiting..." << endl;
return 0;
}
double dSum=0.0;
for(iK=1; iK <= iN; iK++)
{
dSum += double(1/iK);
}
cout << "The value of that summation is " << (1/3)*dSum << "." << endl;
return 1;
}
 
Physics news on Phys.org
1/iK is a result of dividing two integers, so it is integer as well - and it is always zero. Try 1./iK (dot added to force conversion on the expression to floating point).
 
Oh! Thank you so much!
 
Elbobo said:
In addition to what Borek said, when you include code in your post, put a [ code] tag at the beginning and a [ /code] tag at the end (without the extra space that I used). This preserves your indentation and makes your code easier to read. I have done this with your code.
Code:
#include <iostream>
#include <cmath>

using namespace std;

int main( void )
{
	int iN = 0;
	int iK = 1;

	cout << "Input a positive integer value for n for the summation of 1/(3k), from k=1 to k=n." << endl;
	cin >> iN;

	if(iN <= 0)
	{
		cout << "Invalid value for n. Exiting..." << endl;
		return 0;
	}
	double dSum=0.0;
	for(iK=1; iK <= iN; iK++)
	{
		dSum += double(1/iK);
	}
	cout << "The value of that summation is " << (1/3)*dSum << "." << endl;
	return 1;
}

As Borek points out, the division you're doing is integer division. Although you are casting the result to double in the line
Code:
dSum += double(1/iK);
it's too late. The value calculated is 0, and all the cast does is convert 0 as an integer to 0.0 as a double.
 
and I would add further that the issue of using differently typed variables can lead to MANY problems, not just the one exemplified in your specific case, so it's always best to specifically cast your variables into whatever the end result of any calculation is supposed to be [assuming that they are not already of that type]
 

Similar threads

Replies
3
Views
1K
Replies
2
Views
3K
Replies
7
Views
2K
Replies
8
Views
1K
Replies
3
Views
2K
Replies
23
Views
3K
Replies
9
Views
2K
Replies
13
Views
2K
Back
Top