Problem Analysis:
The problem is to declare the two integer and one float variables then intitialize them to 10,15 and 12.6.The output is to print the variables in the screen.
Algorithms;
1.start
2.Input the integer a and b having values 10 and 15 and float as c having 12.6 i.e. int a=10, b=15; float c=12.6
3.Print the variables given by the user .Assign the result as a=10,b=15 and c=12.60000
4.End.
Flowcharts;
fig: flowchart to print the variables.
Codes;
Outputs;
Compiling ,Debugging and Testings
Print the values : 10 15 12.600000