0% found this document useful (0 votes)
6 views

c++ programs 2024

c++ practice program

Uploaded by

kgupta7173
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

c++ programs 2024

c++ practice program

Uploaded by

kgupta7173
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

COMPUTER SCIENCE I (C++)

C++ Programs Question Bank for Practical Handbook (200 pages)

NOTE: First Execute the program then write in your handbook with output.
(Before 10-10-2024)
1) Write a program in C++ to print welcome to RIJC text.
2) Write a program in C++ to print to accept one number from user and print the same.
3) Write a program in C++ to print the sum, multiplication, subtraction, and division of two
numbers using variables.
4) Write a program in C++ to print average of 3 integer number.
5) Write a program in C++ to calculate simple interest using formula.
(Accept the principal and time span from user, rate of interest 8.5%).
6) Write a program in C++ to check whether the entered year is leap year or not.
7) Write a program in C++ to check whether the entered number is even or odd.
8) Write a program in C++ to check whether the entered number is prime or not using for
loop
9) Write a program in C++ to print sum of each digit of a given number using while loop.
10) Write a program in C++ to print 1 to n numbers using while loop and function.
11) Write a program in C++ to print 2’s multiplication table using for loop and function.
12) Write a program in C++ to print largest of 3 numbers.
13) Write a C++ program to display the operation of pre and post increment and
decrement.
14) Write a C++ program that swaps two numbers using function.
15) Write a C++ program that swaps two variables without using a third variable.
16) Write a program in C++ to print factorial of a given number using function.
17) Write a program in C++ to print Fibonacci series of n.
18) Write a program in C++ to print whether the entered number is Armstrong or not.
19) Write a program in C++ to print whether the entered number is palindrome or not.
20) Write a program in C++ to calculate area of a circle using function.
21) Write a program in C++ to print grade according to the percentage.
100-80 % Outstanding
70-80 % First class
60-70 % second class
35-60 Third class
<35 fail class

22)Write a program in C++ to perform arithmetic operation like +,*,-,/,% using switch case
Statement

You might also like