//Stopwatch emulator
#include
#include
using namespace std;
class stopwatch {
double begin, end;
public:
stopwatch();
~stopwatch();
void start();
void stop();
void show();
};
stopwatch::stopwatch()
{
begin = end = 0.0;
}
stopwatch::~stopwatch()
{
cout << "Stopwatch object being destroyed...";
show();
}
void stopwatch::start()
{
begin = (double) clock() /CLOCKS_PER_SEC;
}
void stopwatch::stop()
{
end = (double) clock() / CLOCKS_PER_SEC;
}
void stopwatch::show()
{
cout << "Elapsed time: "<< end - begin;
cout << "\n";
}
int main()
{
stopwatch watch;
long i;
watch.start ();
for (i=0; i<320000; i++) ; //time a for loop
watch.stop();
watch.show();
return 0;
}
Githiari answered the question on May 5, 2018 at 17:46
-
Create an overload rotate() function using C++ new style that left-rotates the bits in its argument and returns the result.Overload it so it accepts ints...
(Solved)
Create an overload rotate() function using C++ new style that left-rotates the bits in its argument and returns the result.Overload it so it accepts ints and longs.(A rotate is similar to a shift except that the bit shifted off one end is shifted onto the other end)
Date posted:
May 5, 2018
.
Answers (1)
-
Create a class in C++ language that holds name and address information.Store all the information in character strings that are private members of the class.Include...
(Solved)
Create a class in C++ language that holds name and address information.Store all the information in character strings that are private members of the class.Include a public function that stores the name and address.Also include a public function that displays the name and address. (Call these functions store() and display() )
Date posted:
May 5, 2018
.
Answers (1)
-
Write a program that uses C++ style I/O to prompt the user for a string and then display its length.
(Solved)
Write a program that uses C++ style I/O to prompt the user for a string and then display its length.
Date posted:
May 5, 2018
.
Answers (1)
-
Given the following new-style C++ program, show how to change it into its old-style form.#include using namespace std;into f(into a);into main(){cout << f(10);return 0;}int f(int...
(Solved)
Given the following new-style C++ program, show how to change it into its old-style form.
#include
using namespace std;
into f(into a);
into main()
{
cout << f(10);
return 0;
}
int f(int a)
{
return a * 3.1416;
}
Date posted:
May 5, 2018
.
Answers (1)
-
Create a function in C++ language called rev_str() that reverses a string.Overload rev_str() so it can be called with either one character array or two.When...
(Solved)
Create a function in C++ language called rev_str() that reverses a string.Overload rev_str() so it can be called with either one character array or two.When it is called with one string, have that one string contain the reversal.When it is called with two strings, return the reversed string in second argument.For example
char s1[80], s2[80];
strcpy (s1, "hello");
rev_str(s1, s2; //reversed string goes in s2, s1 untouched
rev_str(s1); //reversed string is returned in s1
Date posted:
May 5, 2018
.
Answers (1)
-
Outline four main steps in computer forensics
(Solved)
Outline four main steps in computer forensics.
Date posted:
May 4, 2018
.
Answers (1)
-
Properties of a firewall
(Solved)
Properties of a firewall
Date posted:
May 4, 2018
.
Answers (1)
-
Define controversial content
(Solved)
Define controversial content.
Date posted:
April 28, 2018
.
Answers (1)
-
State the methods of verification giving examples
(Solved)
State the methods of verification giving examples
Date posted:
April 28, 2018
.
Answers (1)
-
What is verification?
(Solved)
What is verification?
Date posted:
April 28, 2018
.
Answers (1)
-
State the examples of biometric devices
(Solved)
State the examples of biometric devices
Date posted:
April 28, 2018
.
Answers (1)
-
How does computer technology threaten the privacy of our data?
(Solved)
How does computer technology threaten the privacy of our data?
Date posted:
April 28, 2018
.
Answers (1)
-
Define privacy
(Solved)
Define privacy
Date posted:
April 28, 2018
.
Answers (1)
-
Define law
(Solved)
Define law
Date posted:
April 26, 2018
.
Answers (1)
-
Define Ethics
(Solved)
Define Ethics
Date posted:
April 26, 2018
.
Answers (1)
-
Explain the impact of ICT on the society
(Solved)
Explain the impact of ICT on the society.
Date posted:
April 26, 2018
.
Answers (1)
-
Explain the Usage of ICT in Daily Life
(Solved)
Explain the Usage of ICT in Daily Life.
Date posted:
April 26, 2018
.
Answers (1)
-
Describe the evolution of computer
(Solved)
Describe the evolution of computer
Date posted:
April 26, 2018
.
Answers (1)
-
There are two styles commonly used in LATEX to write bibliography. Name them and giving a valid reason explain which one is more flexible.
(Solved)
There are two styles commonly used in LATEX to write bibliography. Name them and giving a valid reason explain which one is more flexible.
Date posted:
April 24, 2018
.
Answers (1)
-
State six risks to the information
(Solved)
State six risks to the information.
Date posted:
April 24, 2018
.
Answers (1)