Solve Basic C++ Coding Challenges with Easy Steps

  • Context: Comp Sci 
  • Thread starter Thread starter SMA_01
  • Start date Start date
  • Tags Tags
    C++ Coding
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 6K views
SMA_01
Messages
215
Reaction score
0
Basic C++ Coding?

Assume that name and age have been declared suitably for storing names (like "Abdullah", "Alexandra" and "Zoe") and ages respectively. Write some code that reads in a name and an age and then prints the message "The age of NAME is AGE." where NAME and AGE are replaced by the values read in for the variables name and age.
For example, if your code read in "Rohit" and 70 then it would print out "The age of Rohit is 70.".

Here is what I put in:

cin >> name >>age;
count << "The age of" << name << "is" << age << ".";

I don't understand what I'm doing wrong.
Any help is appreciated.

Thanks.
 
Physics news on Phys.org


SMA_01 said:
Assume that name and age have been declared suitably for storing names (like "Abdullah", "Alexandra" and "Zoe") and ages respectively. Write some code that reads in a name and an age and then prints the message "The age of NAME is AGE." where NAME and AGE are replaced by the values read in for the variables name and age.
For example, if your code read in "Rohit" and 70 then it would print out "The age of Rohit is 70.".

Here is what I put in:

cin >> name >>age;
count << "The age of" << name << "is" << age << ".";

I don't understand what I'm doing wrong.
Any help is appreciated.

Thanks.
Two obvious problems are that you don't have a function named main, and you haven't declared the variables you're using.

You also need to have a #include directive so that you can use cin and count.
 


Also you'll need to add:
using namespace std;
If you want to use count and cin without std:: prefix.
 


I would say assignment is ambiguous. "Some code" that you wrote is technically doing what it should do, especially if we assume variables were declared earlier (as is suggested). I suppose you tried to compile the code and it didn't compile, so you assumed it is wrong - if so, look at the answers already given, but the problem doesn't lie in your two lines of code.