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

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 3K views
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


[itex]Series = \frac{1}{3} \sum^{n}_{k=1} \frac{1}{k}[/itex]

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;

count << "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)
{
count << "Invalid value for n. Exiting..." << endl;
return 0;
}
double dSum=0.0;
for(iK=1; iK <= iN; iK++)
{
dSum += double(1/iK);
}
count << "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]