g2.obj : error LNK2019: unresolved external symbol "void __cdecl sizeYear(double ,double,double, int)" (?sizeYear@@YAX NNNH@Z) referenced in function _main
that is the only error i am getting
User Profile
Collapse
-
Please could someone fix my code
Code:#include <iostream> void sizeYear(double,double,double ,int); using namespace std; int main() { double population; double birthRate; double deathRate; int numYears; cout << "Please enter a Population" << endl; cin >> population; cout << "Please enter
-
well when i put the while in it say i, n have not been defined
but with the dowhile it just says n have not been definedLeave a comment:
-
whenever i try to use your code i get a runtime error saying that n has not been definedLeave a comment:
-
We can you use do-while also...
Can you show me that way also???Leave a comment:
-
For this part of the program i want to create a while loop that will not display negative numbers.Leave a comment:
-
nah i'm still working on this one lol
so from what you have taught me today:
int i = 0;
cout<< "Please enter a number" << endl;
cin >> i;
while(i == 0)
{
if(i>0)
esle
}Leave a comment:
-
-
-
hmm ok so let me try this
int n;
cout << "Enter a Number"<<endl;
cin>> n;
while (n)
if (n>0)
elseifLeave a comment:
-
ok so like this......
int n;
while (n = 0)
if (n>0)
cin >> n;
else (n < 0)
cout << " Please enter another number";
???? lolLeave a comment:
-
-
While loop that displays no negative numbers
How would i write a while loop that displays no negative numbers??? -
Stuck.
I really dont know functions at all. My teacher really went over it and like a swift wind and i still looking like "huh?!?!?!" .Leave a comment:
-
Anyone has any suggestions on how to start the this???
I missed the class when she went over this....Leave a comment:
-
Program that estimates the number of boxes of tile for a job
Ceramic Floor Tile
You’re working for a company that lays ceramic floor tile, and they need a program that estimates the number of boxes of tile for a job. A job is estimated by taking the dimensions of each room in feet and inches, and converting these dimensions into multiple of the tile size (rounding up any partial multiple) before multiplying to get the number of tiles for the room. A box contains 20 tiles, so the total number needed...
No activity results to display
Show More
Leave a comment: