Forum: C++ May 13th, 2008 |
| Replies: 5 Views: 564 thanks to tesuji for the answer. |
Forum: C++ May 13th, 2008 |
| Replies: 4 Views: 646 thanks, I already solved it differently, but I bet your solution works too.
PS: may I as why do you want to know? |
Forum: C++ May 12th, 2008 |
| Replies: 5 Views: 564 thanks a lot william, but I don't need the functions.
I just need the results, it's for a C++ class assignment.
I'm not expecting anyone to do it for me but if someone could explain me how would I... |
Forum: C++ May 12th, 2008 |
| Replies: 4 Views: 646 Don't worry, I'm used to it, almost everyone 'acts' like that in forums.
Thanks for your concerns, and yes I'm learning.
I know it is always better to explore the concepts first appealing for... |
Forum: C++ May 11th, 2008 |
| Replies: 4 Views: 646 Given the declarations:
int n;
char ch1;
char ch2;
and given that n contains a two-digit number, translate n into two single characters such that ch1 holds the higher-order digit, and ch2 holds... |
Forum: C++ May 11th, 2008 |
| Replies: 2 Views: 384 |
Forum: C++ May 11th, 2008 |
| Replies: 2 Views: 384 Hi I'm not really sure how to solve this, if a system supports ten digits of precision for floating-point numbers, what are the results for the following computations?
a. 1.4E+12 + 100.0
b. 4.2E-8... |
Forum: C++ May 11th, 2008 |
| Replies: 5 Views: 564 Hi, this is my first time posting to this forum so please let me know if I'm doing anything wrong.
I would like to know how to do the following...
a. Write the internal representation of “17” in... |