0% found this document useful (0 votes)
32 views3 pages

C++programs Exercices-1-3

Uploaded by

masde202
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views3 pages

C++programs Exercices-1-3

Uploaded by

masde202
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Programming problems

Exercise 1 :
Write a C++ program to calculate Fubanaci numbers Xn, n=1,2, …,1000
Xn+1 = Xn+ Xn-1, X0=1, , X1=1, n=1,2,…

Exercise 2:
Write a C++ program TO REARRANGE A LIST OF RANDOUM
NUMBERS Xn INTO ASCENDING ORDER

Exercise 3:
Write a C++ program to get mean of the degrees of student
( Math = 80 , Science =67, Arabic= 65 , Studies= 88 , English = 56.
Exercise 4:
Write a C++ program to transfer inchs to centimeters (1 inch= 2.54
cintimeters)
Exercise 5:
Use for loop to get the factorials of n positive intergers 1,2,…,1000

Exercise 6 :
Write a C++ program to get the volume and the area of a sphere or radius r

Exercise 7:
Write a C++ program to get the volume and the area of a cylinder of radius
r and height h

Exercise 8:
Write a C++ program to get the sum of the series
1 1 1 1 1
SUM  1    ... 
2 3 4 99 100

Exercise 9 :
Write a C++ program to get the sum of the series
1 1 1 1 1
SUM  1     ...  
2! 3! 4! 99! 1000!
Exercise 10:
Write a C++ program to get the sum of the series
SUM  1  33  53  7 3  ...  (1) n (2n  1), n  333
Exercise 11:
Write a C++ program to solve the second degree equation
A X2+B X + C = 0, where the inputs are the coefficients A, B and C

1
Exercise 12:
Write a C++ program to inter N random values between 0 and 100 and get
their mean  and the standard deviation sd


N 1
i0 X i
N ( X   ) 2
sd  i 0
i
 ,
N N 1
Exercise 14 :
Write a C++ program to inter the elements of the two matrix A and B
and their sum and difference where
 1 2 3 3 1 3
A  1 0 3and B  1 0 2
   
 7 4 1  0 4 1 

Exercise 15- Write a C++ program to solve the difference equation

1  2 
x  x 
2  n 1 
n
x n 1 
n  1 and X0 > 0

Exercise 16- Write a C++ program to get the result of the multiplication of
two matrices
 1 2 3 3 1 3
A   1 0 3 and B   1 0  2
 7 4 1  0 4 1 

Exercise 17-
Write a C++ program to calculate the sum of the series
1-1/2+1/3+ . . . +1/999

Exercise 18:

Write a program to convert English units to metric (e.g., miles to


kilometers, gallons to liters, etc.). Include a specification and a code
design.

Exercise 19:

Write a program to perform date arithmetic, such as how many days


there are between 6/1/90 and 8/3/92. Include a specification and a
code design.

2
Exercise 20:

A serial transmission line can transmit 960 characters a second. Write


a program that will calculate how long it will take to send a file,
given the file's size. Try it on a 400MB (419,430,400 byte) file.
Use appropriate units. (A 400MB file takes days.)

Exercise 21:

Write a program to tell whether a number is prime.

Exercise 22:
Write a program that takes a series of numbers and counts the number of
positive and negative values.

Exercise 23:

Write a C++ program to solve the second dgree eqaution

aX2 + bX + c= 0 for any real a,b and c

Exercise 24:

Write a c++ program to get the sum of a squarec of odd numbers between 22
and 389

Exercise 25:

Write a C++ program to enter names and degrees of student and give the
grades according to the degree

Exercise 26:

Write a C++ program to calculate the area of a triangle with sides a,b
and c

You might also like