00:01
First of all we will write hash include iostream.
00:12
So iostream is a header file that is used to take input and output objects.
00:15
We want to include that in our program so we are writing hash include iostream.
00:20
Then we will write using namespace std.
00:30
So since we want to use the names of variables and objects from the standard library so we are writing using namespace std.
00:38
Next we will write int main.
00:40
So this will be the starting point of program execution and it will return an integer.
00:48
As mentioned in the question we have to take three variables.
00:52
One is a string variable.
00:54
Next it is an integer variable.
00:56
Let's take int i and then a float variable.
01:00
So we are taking float f...