Project: Favorite Number Message
Ask the user:
Their name
Their favorite number
Calculates the square of the given number
Prints a customized message like: ‘‘Hi Zara, the square of 7 is 49.’’
Project: Favorite Number Message
Ask the user:
Their name
Their favorite number
Calculates the square of the given number
Prints a customized message like: ‘‘Hi Zara, the square of 7 is 49.’’
#include <iostream>
using namespace std;
int main() {
// Your code goes here
return 0;
}Take and print user input in C++