C++ Assign 1
C++ Assign 1
Write a program to display student information like Name, Roll no, Gender, Address,
Percentage of Previous Examination.
2. Write a program to calculate surface area of sphere and trapezium by entering required
values.
3. Write a program to execute the expression for projectile motion.
s = ut+1/2 at2
where s: Displacement; u: initial velocity, a : acceleration t: time
4. Write a program to find the commission on a salesman's total sales.
The commission on a salesman’s total sales is as follows:
a) If sales <100, then there is no commission.
b) If 100>=sales <=500, then commission = 10% of sales.
c) If sales > 500, then commission = 100+8% of sales above 500.
Display details of salesman
5. Write a program to accept year (4-Digit>1900) and check whether it is a leap year or not.
6. Write a program to check whether entered character is digits, special symbol or alphabet. If
the alphabet is uppercase then display it into lowercase and vice versa.