Click here to Skip to main content
16,004,977 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CMonthCalCtrl funny Pin
mcsherry3-Apr-06 2:48
mcsherry3-Apr-06 2:48 
AnswerRe: CMonthCalCtrl funny Pin
mcsherry3-Apr-06 3:30
mcsherry3-Apr-06 3:30 
QuestionFinding files Pin
Waldermort2-Apr-06 23:44
Waldermort2-Apr-06 23:44 
AnswerRe: Finding files Pin
khan++2-Apr-06 23:50
khan++2-Apr-06 23:50 
GeneralRe: Finding files Pin
Waldermort2-Apr-06 23:55
Waldermort2-Apr-06 23:55 
AnswerRe: Finding files Pin
Waldermort3-Apr-06 0:04
Waldermort3-Apr-06 0:04 
AnswerRe: Finding files Pin
Hamid_RT3-Apr-06 1:48
Hamid_RT3-Apr-06 1:48 
Questionhow do u do this???? Pin
slurpyz2-Apr-06 23:32
slurpyz2-Apr-06 23:32 
a game to transform letters read from a file to a prime number. Do and enjoy it!

The goal of this is to construct a C++ program that will read all letters from a specified file and transform them to a prime number.

The tasks you have to perform are:

(A) Read letters in sequence from a specified file, which contains 1 sentence. Transform each letter to the corresponding ASCII value.

For example, if the file contains “What?” then

‘W’ corresponds to 87

‘h’ corresponds to 104

‘a’ corresponds to 97

‘t’ corresponds to 116

(B) Calculate and output r1=the sum of all obtained integers (e.g. r1=87+104+97+116=404)

(C) Calculate and output r2=the length of Syracuse sequence seeded by r1.

Let n be a positive integer and f(n) be the transformation that sends n to n/2 if n is even and sends n to 3n+1 if n is odd. Starting with a positive value u called the seed, the sequence of integers iteratively generated by f and u is called a Syracuse sequence.


For example, starting with the seed u = 1, the subsequent terms of the sequence are 4, 2, and 1. The length of the sequence (excluding the seed) is therefore 3.


For u = 4, the next terms are 2 and 1. The length is 2.


For u = 404, the next terms are 202, 101, 304, 152, 76, 38, 19, 58, 29, 88, 44, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, and 1. The length is 27.


It is conjectured (this means that we do not have a proof of this fact, only strong evidences) that for any positive seed the sequence will always reach to 1. In fact, computations show that for any seed u less than or equal to 3*2^53, the corresponding sequence always reaches 1. The general case is unknown.

(D) Calculate and output r3=the largest prime factor of r2.

A prime factor of n is a factor of n which is a prime number. A prime number is any integer greater than 1 and only divisible by itself and 1 (e.g. 2, 3, 5, 7, 11, 13, 17 etc). For example, 3 is the largest prime factor of 27 and 7 is the largest prime factor of 49.

Here are some example
Example 1
Enter the name of the input file: in1.txt
963
49
7

Press CTR-C to Leave...

AnswerRe: how do u do this???? Pin
Abebe2-Apr-06 23:41
Abebe2-Apr-06 23:41 
QuestionRe: how do u do this???? Pin
David Crow3-Apr-06 2:28
David Crow3-Apr-06 2:28 
QuestionHow to handle Close button in MDI? Pin
Sarvan AL2-Apr-06 23:27
Sarvan AL2-Apr-06 23:27 
AnswerRe: How to handle Close button in MDI? Pin
khan++2-Apr-06 23:45
khan++2-Apr-06 23:45 
GeneralRe: How to handle Close button in MDI? Pin
Sarvan AL2-Apr-06 23:58
Sarvan AL2-Apr-06 23:58 
GeneralRe: How to handle Close button in MDI? Pin
khan++3-Apr-06 0:14
khan++3-Apr-06 0:14 
GeneralRe: How to handle Close button in MDI? Pin
Nibu babu thomas3-Apr-06 0:16
Nibu babu thomas3-Apr-06 0:16 
GeneralRe: How to handle Close button in MDI? Pin
Sarvan AL3-Apr-06 0:26
Sarvan AL3-Apr-06 0:26 
GeneralRe: How to handle Close button in MDI? Pin
Nibu babu thomas3-Apr-06 0:39
Nibu babu thomas3-Apr-06 0:39 
GeneralRe: How to handle Close button in MDI? Pin
khan++3-Apr-06 0:41
khan++3-Apr-06 0:41 
GeneralRe: How to handle Close button in MDI? Pin
Sarvan AL3-Apr-06 0:46
Sarvan AL3-Apr-06 0:46 
QuestionRe: How to handle Close button in MDI? Pin
David Crow3-Apr-06 2:30
David Crow3-Apr-06 2:30 
QuestionHow to see all of my Questions? Pin
Sarvan AL2-Apr-06 23:21
Sarvan AL2-Apr-06 23:21 
AnswerRe: How to see all of my Questions? Pin
khan++2-Apr-06 23:26
khan++2-Apr-06 23:26 
GeneralRe: How to see all of my Questions? Pin
Sarvan AL2-Apr-06 23:42
Sarvan AL2-Apr-06 23:42 
QuestionHow to Play Audio Files in VC6? Pin
Andy Rama2-Apr-06 23:09
Andy Rama2-Apr-06 23:09 
AnswerRe: How to Play Audio Files in VC6? Pin
Nibu babu thomas2-Apr-06 23:12
Nibu babu thomas2-Apr-06 23:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.