473,394 Members | 1,828 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

multiplying two numbers and giving the square root

Hello, I have newbie question.
I'm stuck on this current assignment.

Write a program that prompts the user for two integer values,
passes the values to a function where they are multiplied
together and the square root of the product is returned and
displayed for the user. The function should return a double.
Hint: If you multiply an integer by 1.0 the result will be a
double. For example:

Enter an integer: 7
Enter another integer: 6
The square root of 7 times 6 = 6.48074

--
ok, so what I did was created a program that would get the
sqaure root of a number, and then created another one that multipled
2 numbers. Here is the source for the square root:

#include <iostream>
#include <cmath>
using namespace std;

int main()
{
double intOne; // use double for real numbers

cout << "Enter an integer:\n";
cin >> intOne;
double side; // create another variable
side = sqrt( intOne ); // call function, assign return value
cout << "The square root is " << side;
cout << " \n";

return 0;
}

here is the source for multiplying the two integers:

#include <iostream>
using namespace std;
int main()
{
int number1,number2, product;
cout << "Enter a number: ";
cin >> number1;
cout << "Enter another number: ";
cin >> number2;
product = number1 * number2;
cout << "The product of " << number1 <<" and "<< number2 << " is " << product <<"\n";
return 0;
}

I tried to combine the two together using this code:

#include <iostream>
using namespace std;
int main()
{
int number1,number2, product;
cout << "Enter a number: ";
cin >> number1;
cout << "Enter another number: ";
cin >> number2;
product = number1 * number2;
cout << "The product of " << number1 <<" and "<< number2 << " is " << product <<"\n";
root = sqrt( product );
cout << "The square root is " << root <<"\n";

return 0;
}

here is the error I'm getting:

combine.cc: In function `int main()':
combine.cc:16: error: `root' undeclared (first use this function)
combine.cc:16: error: (Each undeclared identifier is reported only once for
each function it appears in.)
combine.cc:16: error: call of overloaded `sqrt(int&)' is ambiguous
/usr/include/bits/mathcalls.h:157: error: candidates are: double sqrt(double)
/usr/include/g++/cmath:550: error: long double std::sqrt(long
double)
/usr/include/g++/cmath:546: error: float std::sqrt(float)

I'm new to this language and any help would be greatly
appreciated. It would be great if someone could point
me in the right direction.
Thanks a bunch,

--Cameron
Jul 22 '05 #1
4 8655
cplusplus <cp*******@linux.local> wrote in
news:pa****************************@linux.local:
int number1,number2, product;


should be
int number1,number2, product, root = 0;
Jul 22 '05 #2
On Wed, 14 Jun 2006 12:57:24 -0700, cplusplus wrote:
Hello, I have newbie question.
[snip]
here is the error I'm getting: combine.cc: In function `int main()':
combine.cc:16: error: `root' undeclared (first use this function)
It's quite simple, really. Compiler error messages are not always clear,
but this one is. If you become a programmer, you will be spending a lot of
time deciphering what the error message means in terms of your code, so
it's best to start right away! The problem here is that you have not
declared your root variable. In your first example program, you have
double intOne; // use double for real numbers


You have no such declaration for root in the combined program.

John's answer was close, but would give you an integral root, which would
not produce the desired answer (it would give 6 as the root of 6 * 7).

--
Greg Schmidt gr***@trawna.com
Trawna Publications http://www.trawna.com/
Jul 22 '05 #3
you don't include cmath in the third program and you don't declare the
variable root:

#include <cmath> //should go near the beginning of the prog

int root = sqrt( product ); //inserted int before root

cplusplus wrote:
Hello, I have newbie question.
I'm stuck on this current assignment.

Write a program that prompts the user for two integer values,
passes the values to a function where they are multiplied
together and the square root of the product is returned and
displayed for the user. The function should return a double.
Hint: If you multiply an integer by 1.0 the result will be a
double. For example:

Enter an integer: 7
Enter another integer: 6
The square root of 7 times 6 = 6.48074

--
ok, so what I did was created a program that would get the
sqaure root of a number, and then created another one that multipled
2 numbers. Here is the source for the square root:

#include <iostream>
#include <cmath>
using namespace std;

int main()
{
double intOne; // use double for real numbers

cout << "Enter an integer:\n";
cin >> intOne;
double side; // create another variable
side = sqrt( intOne ); // call function, assign return value
cout << "The square root is " << side;
cout << " \n";

return 0;
}

here is the source for multiplying the two integers:

#include <iostream>
using namespace std;
int main()
{
int number1,number2, product;
cout << "Enter a number: ";
cin >> number1;
cout << "Enter another number: ";
cin >> number2;
product = number1 * number2;
cout << "The product of " << number1 <<" and "<< number2 << " is " << product <<"\n";
return 0;
}

I tried to combine the two together using this code:

#include <iostream>
using namespace std;
int main()
{
int number1,number2, product;
cout << "Enter a number: ";
cin >> number1;
cout << "Enter another number: ";
cin >> number2;
product = number1 * number2;
cout << "The product of " << number1 <<" and "<< number2 << " is " << product <<"\n";
root = sqrt( product );
cout << "The square root is " << root <<"\n";

return 0;
}

here is the error I'm getting:

combine.cc: In function `int main()':
combine.cc:16: error: `root' undeclared (first use this function)
combine.cc:16: error: (Each undeclared identifier is reported only once for
each function it appears in.)
combine.cc:16: error: call of overloaded `sqrt(int&)' is ambiguous
/usr/include/bits/mathcalls.h:157: error: candidates are: double sqrt(double)
/usr/include/g++/cmath:550: error: long double std::sqrt(long
double)
/usr/include/g++/cmath:546: error: float std::sqrt(float)

I'm new to this language and any help would be greatly
appreciated. It would be great if someone could point
me in the right direction.
Thanks a bunch,

--Cameron

Jul 23 '05 #4
In message <C7********************@adelphia.com>, Squid Seven
<te*********@squidseven.com> top-posted

[please don't do that]
you don't include cmath in the third program and you don't declare the
variable root:

#include <cmath> //should go near the beginning of the prog

int root = sqrt( product ); //inserted int before root
Since when did std::sqrt return an int?
cplusplus wrote:
Hello, I have newbie question.
I'm stuck on this current assignment. Write a program that prompts
the user for two integer values,
passes the values to a function where they are multiplied
together and the square root of the product is returned and
displayed for the user. The function should return a double. ^^^^^^ Hint: If you multiply an integer by 1.0 the result will be a
double.
That's a really bad hint. There are better ways to convert integer to
double.
For example: Enter an integer: 7
Enter another integer: 6
The square root of 7 times 6 = 6.48074
--
ok, so what I did was created a program that would get the sqaure
root of a number, and then created another one that multipled
2 numbers. Here is the source for the square root:
#include <iostream>
#include <cmath> using namespace std;
int main() {
double intOne; // use double for real numbers
cout << "Enter an integer:\n";
cin >> intOne;
double side; // create another variable
side = sqrt( intOne ); // call function, assign return value
cout << "The square root is " << side;
cout << " \n";
return 0;
}
here is the source for multiplying the two integers:
#include <iostream> using namespace std;
int main() {
int number1,number2, product; cout << "Enter a number: ";
cin >> number1; cout << "Enter another number: ";
cin >> number2;
product = number1 * number2;
cout << "The product of " << number1 <<" and "<< number2 << " is
" << product <<"\n";
return 0;
}
I tried to combine the two together using this code:
#include <iostream> using namespace std;
int main() {
int number1,number2, product; cout << "Enter a number: ";
cin >> number1; cout << "Enter another number: ";
cin >> number2;
product = number1 * number2;
cout << "The product of " << number1 <<" and "<< number2 << " is
" << product <<"\n";
root = sqrt( product );
double root = sqrt(double(product));
cout << "The square root is " << root <<"\n";
return 0;
}
here is the error I'm getting:
combine.cc: In function `int main()':
combine.cc:16: error: `root' undeclared (first use this function)
combine.cc:16: error: (Each undeclared identifier is reported only once for
each function it appears in.)
combine.cc:16: error: call of overloaded `sqrt(int&)' is ambiguous
/usr/include/bits/mathcalls.h:157: error: candidates are: double sqrt(double)
/usr/include/g++/cmath:550: error: long double std::sqrt(long
double)
/usr/include/g++/cmath:546: error: float std::sqrt(float)
I'm new to this language and any help would be greatly
appreciated. It would be great if someone could point
me in the right direction.
Thanks a bunch,
--Cameron


--
Richard Herring
Jul 23 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: cplusplus | last post by:
Hello, I have newbie question. I'm stuck on this current assignment. Write a program that prompts the user for two integer values, passes the values to a function where they are multiplied...
24
by: Stavros Christoforou | last post by:
Hello everyone, I was wondering if someone could help me with an issue I have in C++. I want to select random points within the volume of a sphere. I know how to get random numbers using srand()...
7
by: brian.digipimp | last post by:
Write a program that prompts the user to input a positive integer. It should then output a message indicating whether the number is a prime number. (Note: An even number is prime if it is 2. An odd...
2
by: k | last post by:
I have aproblem when multiplying 2 float 638.9 * 382.8 should = 244570.92 results giving 244570.922 both numbers are float variables , tried using double to...
17
by: Mike Meyer | last post by:
In the discussion of equality, the issue that decimal('3.0') == 3.0 is False came up as a reason for changing the behavior of ==. The problem with this is that the proposed change doesn't really...
32
by: priyam.trivedi | last post by:
Hi! Could anyone tell me how to find the square root of a number without using the sqrt function. I did it by using Newton's Formula. How can it be done by using the Binomial Theorem/Taylor...
12
by: vj | last post by:
Hi! I have a piece of code (shown below) involving complex numbers. The code is not running and giving error ("Invalid floating point operation" and "SQRT:Domain error"). I would be very...
25
by: johnmsimon | last post by:
i need to develop a code that finds a prime right number between 2 and 100000. and print one line of text that indicates if the int. is right prime. i am in beginning programing so complex is...
2
by: shihaoran | last post by:
I really need help with one my program; it is about arraylist; I do not get it. Can someone please help me with it? Here's the instruction: 1. Your instructor will provide you with a text...
4
by: krishnai888 | last post by:
I had already asked this question long back but no one has replied to me..I hope someone replies to me because its very important for me as I am doing my internship. I am currently writing a code...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.