473,569 Members | 2,737 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 8678
cplusplus <cp*******@linu x.local> wrote in
news:pa******** *************** *****@linux.loc al:
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.co m
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************ ********@adelph ia.com>, Squid Seven
<te*********@sq uidseven.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(pro duct));
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
746
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 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...
24
5876
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() and rand(), but have no idea how to do that within a more complicated geometry. Any help would be greatly appreciated.. Regards Stavros
7
7370
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 integer is prime if it is not divisible by an odd integer less than or equal to the square root of the number.) I was given this assignment in my...
2
2517
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 much the same effect ..????? any assistance much appreciated
17
1462
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 fix anything, it just gives different wrong behavior. The correct fix would seem to be fixing python's handling of numbers. It's not clear from the...
32
4962
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 Series? Is there any other way of doing it rather than using series? Thank you, Priyam
12
2752
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 thankful if someone can tell me where is the problem. I am aware that my code is far from being efficient and organized, and also there are many extra...
25
3857
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 complicated. we are on a functions chapter. i am usung the square root to find the prime. so far i have accomplished this but i cant fgure how to divide...
2
4199
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 file, (numbers.txt), containing a large (N <= 1000) number of integers. The integers range in value from 0 to 100. The text file has been created with...
4
8080
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 involving lot of matrices. At one point I need to calculate the square root of a matrix e.g. A which contains non-zero off-diagonal elements. I...
0
7924
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8125
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7676
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7974
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6284
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5219
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3653
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1221
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
938
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.