emadeldeen

Emadeldeen Abdallah

Teadching-Assistant -

Faculty of Computers and Information

Address: Sohag

60

Like

CPP

2018-06-12 01:10:54 |

C++ Programming Basics

Loops and Decisions

Arrays

Functions


2018-06-12 01:52:55 | CPP
Task  - 01 - CPP
Write CPP Function that take matrix of 10 char elements and c as char to to search if c is an element in the array return true else return false.... Read more

2018-06-12 01:54:36 | CPP
Task - 02  - CPP
Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds (type long). Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user ... Read more

2018-06-12 01:55:31 | CPP
Task 03
Start with the power() function of Exercise 1, which works only with type double. Create a series of overloaded functions with the same name that, in addition to double, also work with types char, int, long, and float. Write a main() program that exercises these overloaded functions with all argumen... Read more

C++ Programming Basics

2018-06-12 01:24:53 CPP
Date: 17/03/2018 10:00 AM Day: Saturday Section Num.: (03) D AND 3-D PLOTS * Line Plots >> x = 0:pi/100:2*pi; >> y = sin(x); >> plot(x,y) >> xlabel('x') >> ylabe Read more

Functions – IF - Scripts

2018-06-12 01:26:00 CPP
Date: 24/03/2018 10:00 AM Day: Saturday Section Num.: (04) Functions – IF - Scripts * Some of Built-in functions in matlab * Size( ) >> size(x) ans = * 1 * x * Read more

Loops

2018-06-12 01:26:47 CPP
Date: 31/03/2018 10:00 AM Day: Saturday Section Num.: (05) Loops * For Loop >> for i=1:5 disp(i) end 1 2 3 4 5 -------------------- Read more