Tagged Questions

2
votes
5answers
1k views

Sieve of Eratosthenes algorithm

I am currently reading "programming principles and practice using c++" in chapter 4 there is an exercise in which i need to make a program to calculate prime numbers between 1 and 100. This is the ...
2
votes
8answers
2k views

Event-driven simulation class

I am working through some of the exercises in The C++ Programming Language by Bjarne Stroustrup. I am confused by problem 11 at the end of Chapter 12: (*5) Design and implement a library for writing ...
1
vote
4answers
67 views

C++ For Dummies Exercise 6-14 Append Issue

I'm having trouble with an example that I am compiling from my C++ All-In-One For Dummies, Second Edition. What it should do is display 10 lines of code containing CR(somenumbers)NQ; However every ...
1
vote
4answers
265 views

where can i find online c++ design patterns and exercises? [closed]

i need to start refine my memory so i like to practice a bit do you know good site like : http://www.blackbeltfactory.com for java?
1
vote
1answer
435 views

exercise in the c++ programming language 3rd edition - desk calculator

I'm not sure what Bjarne meant with this exercise: "Convert the desk calculator to use a symbol structure instead of using the static variables number_value and string_value." Did he mean puting ...