Answer:
#include <iostream>
using namespace std;
int main() {
int currentYear = 2020;
int myCurrentAge = 23;
int myNewAge=myCurrentAge+(2050-currentYear);
cout << "My Current Age is " << myCurrentAge << endl;
cout << "I will be " << myNewAge << " in 2050." << endl;
}
Explanation:
- Initialize the currentYear with 2020 and myCurrentAge with 23.
- Add myCurrentAge with the the result of (2015 - currentYear) and assign this result to myNewAge variable.
- Finally display my current age and after that display the new age in 2050.
Output:
My Current Age is 23
I will be 53 in 2050.
Answer: It is likely that this can happen.
Explanation:
If you really want to go the extra mile to clear it all, I may recommend that you clear it off the phone as well. Hope this helps.
Based on the data, a combination of strawberry rhubarb (12%), chocolate mud pie (23%) and cherry (14%) would amount to 49% which is close to half of the pie chart or 50%. Another probable answer is the combination of coconut (9%), banana cream (10%), pumpkin (11%), and other (21%) which is equal to 51%.
You would go to downloads in your library then click new folder, name it, save it, then drag it there you need it
>>> b=2.
>>> print type(b)
File "<stdin>", line 1
print type(b)
^
SyntaxError: invalid syntax
>>> print( type(b) )
<class 'float'>
>>>