Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3
Diploma in Software Engineering
First Semester C++ Programming Language Assignments Write Algorithm, Draw Flowchart & implement the code of the following:
Fundamental C++ Programs
1. C++ "Hello, World!" Program
2. C++ program to print a sentence 3. C++ program to print an integer entered by the user 4. C++ program to add two integers entered by the user 5. C++ program to multiply two floating-point numbers 6. C++ program to find ASCII value of a character entered by the user 7. C++ program to find quotient and remainder of two integers 8. C++ program to find the size of int, float, double and char 9. C++ program to demonstrate the working of keyword long 10. C++ program to swap two numbers 11. C++ program for addition, subtraction, multiplication, division and modulus of two numbers 12. C++ program to check whether an alphabet is a vowel or consonant 13. C++ program for Input/Output of Integer, Character and Floating-point numbers 14. C++ program to add two numbers using pointers 15. C++ program to add two complex numbers 16. C++ program to add n numbers 17. C++program to print current date and time 18. C++ program to check year is leap year or not 19. C++ program to print digit of a number in words 20. C++ program to find square root of a number using sqrt function 21. C++ program to find total, average and percentage marks of subjects 22. C++ program to calculate simple interest 23. C++ program to calculate compound interest 24. C++Program to Calculate Monthly EMI (Equated Monthly Installment)
Geometrical C++ programs
1. program to find circumference(perimeter) of a circle
2. program to find the perimeter of a rectangle 3. program to calculate area of a circle 4. program to calculate area of a rectangle 5. program to calculate area of a parallelogram 6. program to calculate area of a square 7. program to calculate area of a rhombus 8. program to calculate area of a trapezium 9. program to calculate area of a right-angled triangle 10. program to calculate area of an equilateral triangle 11. program to calculate area of any triangle 12. program to calculate volume and total surface area of cube 13. program to calculate volume and total surface area of cuboid 14. program to calculate volume and total surface area of cone 15. program to calculate volume and total surface area of cylinder 16. program to calculate volume and total surface area of sphere 17. program to find third angle of a triangle
If Else C++ Programs
1. program to find largest / maximum of two numbers
2. program to find largest / maximum of three numbers 3. program to check whether a number is positive, negative or zero 4. program to check whether a character is alphabet or not 5. program to check whether a character is alphabet or digit 6. program to print days of week in words using if else ladder 7. program to print number of days in any month 8. program to check whether three angles of triangle is valid or not 9. program to check whether three sides of triangle is valid or not 10. program to check whether a triangle is equilateral, isosceles or scalene.