#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int first = 2;
int second = first + 3;
int third = first + second;
cout << "First: " << first << endl;
cout << "Second: " << second << endl;
cout << "Third: " << third << endl;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int first = 2;
int second = first + 3;
int third = first + second;
cout << "First: " << first << endl;
cout << "Second: " << second << endl;
cout << "Third: " << third << endl;
}