User Profile
Collapse
-
It works dev7060! Thank you, I really appreciate your help :) -
Thank you! it worked, but now I'm stuck in the calculations:
#include <iostream>
#include <cmath>
#include <string>
using namespace std;
int main()
{
string membername;
string oweight;
string lostw;
double totalwt;
double percentlost;
cout << "What is the member's name? ";
getline(cin,...Leave a comment:
-
Please help.. cin is not giving me anything
This is what I'm trying to do:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int membername, oweight, lostw, percentlost;
double totalwt;
cout << "What is the member's name? ";
cin >> membername;
cout << "How much did you weight?\n ";
cin >> oweight;
cout <<"How...
No activity results to display
Show More
Leave a comment: