Followers

Tuesday, March 1, 2011

Exercises 1

1. Write correct C++ syntax & for each statement below:
a) Initializing variable Pi with the value 3.14 (constant)

//variable Pi
Float Pi = 3.14

b) Declare a variable named Parameter with double data type (declare variable)

//variable Parameter
Double Parameter = 9.212156867

c) Give instruction that allowed user to input data (input)

Cout<<”Please Input Your Data Here”; Cin >>data;

d)Input number of computer using variable (input assign to variable value)

//variable noc=number of computer
Int noc;

2.Solve the question below. Show the working.

a) 5 * 2 % 3 + 25 / 5
(5*2 % 3) + (25 /5)
10%3 + 5
1 + 5
6

b) a = 5, b = 6
!((a < 3) && (a == 3) || (b > 9))
NOT((5 < 3) && (5 == 3) || (6 > 9))
NOT(0 AND 0 || 0)
1

3. Identify syntax errors in the following program.






4. Write a program that will calculate the monthly salary for an employee that where Saturday and Sunday are considered as non-working days.




5. Write a program that calculates the average of 5 numbers that can be input by user.



6. Write a program that will calculate the area of rectangular, triangle and circle.

Rectangular



Triangle




Circle

No comments:

Post a Comment