Tagged Questions

2
votes
4answers
763 views

generating random alphabets with some alphabets having a higher frequency of occurence(vc++6.0)

basically i have a function that generates random alphabets .i have done this using the rand() function to generate numbers and them converted them to their corresponding ascii equivalents. but i want ...
1
vote
1answer
208 views

Function calculating the probability of a letter in an sentence

I have a function that is supposed to calculate the number of times a letter occurs in a sentence, and based on that, calculate the probability of it occurring in the sentence. To accomplish this, I ...
0
votes
3answers
408 views

Project Euler Problem 17 - What's wrong?

I decided to try project euler problem 17 today, and I quickly wrote a pretty fast code in C++ to solve it. However, for some reason, the result is wrong. The question is: If the numbers 1 to 5 are ...