Question: //This program prints your age next year //Improve it by making it print your name and student number as well. #include using namespace std; int
//This program prints your age next year
//Improve it by making it print your name and student number as well.
#include
using namespace std;
int main(void) {
int age;
cout << "Please enter your age";
cin >> age;
cout << "In 2023, you will be " << age + 1;
return 0;
}
CODE IS IN C++
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
