Thread: helllpppp

  1. #1
    Registered User
    Join Date
    Mar 2006
    Posts
    3

    helllpppp

    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...

  2. #2
    VA National Guard The Brain's Avatar
    Join Date
    May 2004
    Location
    Manassas, VA USA
    Posts
    903
    I do quality homework at the most affordable price.
    • "Problem Solving C++, The Object of Programming" -Walter Savitch
    • "Data Structures and Other Objects using C++" -Walter Savitch
    • "Assembly Language for Intel-Based Computers" -Kip Irvine
    • "Programming Windows, 5th edition" -Charles Petzold
    • "Visual C++ MFC Programming by Example" -John E. Swanke
    • "Network Programming Windows" -Jones/Ohlund
    • "Sams Teach Yourself Game Programming in 24 Hours" -Michael Morrison
    • "Mathmatics for 3D Game Programming & Computer Graphics" -Eric Lengyel

  3. #3
    I Write C++ Apps, Sue Me.
    Join Date
    Feb 2006
    Location
    In My Computer
    Posts
    44
    I charge $60/ Hour. You can send the money via PayPal or A Check To:

    Do Your Own Homework!!! Co.
    PO Box 01010
    Get some help, urself.

    -Kyle

  4. #4
    Registered User
    Join Date
    Jan 2005
    Posts
    847
    Quote Originally Posted by comwiz
    I charge $60/ Hour. You can send the money via PayPal or A Check To:
    I'm sure I can beat this rate. Say $59/Hour and I'll throw in a free cookie.

  5. #5
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

Popular pages Recent additions subscribe to a feed