Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
defloadWords(): """ Returns a list of valid words. Words are strings of lowercase letters. Depending on the size of the word list, this function may take a while to finish. """ print("Loading word list from file...") # inFile: file inFile = open(WORDLIST_FILENAME, 'r') # wordList: list of strings wordList = [] for line in inFile: wordList.append(line.strip().lower()) print(" ", len(wordList), "words loaded.") return wordList
defgetFrequencyDict(sequence): """ Returns a dictionary where the keys are elements of the sequence and the values are integer counts, for the number of times that an element is repeated in the sequence. sequence: string or list return: dictionary """ # freqs: dictionary (element_type -> int) freq = {} for x in sequence: freq[x] = freq.get(x,0) + 1 return freq
defgetWordScore(word, n): """ Returns the score for a word. Assumes the word is a valid word. The score for a word is the sum of the points for letters in the word, multiplied by the length of the word, PLUS 50 points if all n letters are used on the first turn. Letters are scored as in Scrabble; A is worth 1, B is worth 3, C is worth 3, D is worth 2, E is worth 1, and so on (see SCRABBLE_LETTER_VALUES) word: string (lowercase letters) n: integer (HAND_SIZE; i.e., hand size required for additional points) returns: int >= 0 """ # score = 0 for elm in word: score += SCRABBLE_LETTER_VALUES[elm] score *= len(word) if len(word) == n: score += 50 return score
displayHand(hand),对当前拼字尝试在控制台上进行输出,便于游戏玩家查看
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
defdisplayHand(hand): """ Displays the letters currently in the hand. For example: >>> displayHand({'a':1, 'x':2, 'l':3, 'e':1}) Should print out something like: a x x l l l e The order of the letters is unimportant. hand: dictionary (string -> int) """ for letter in hand.keys(): for j in range(hand[letter]): print(letter,end=" ") # print all on the same line print() # print an empty line
defdealHand(n): """ Returns a random hand containing n lowercase letters. At least n/3 the letters in the hand should be VOWELS. Hands are represented as dictionaries. The keys are letters and the values are the number of times the particular letter is repeated in that hand. n: int >= 0 returns: dictionary (string -> int) """ hand={} numVowels = n // 3 for i in range(numVowels): x = VOWELS[random.randrange(0,len(VOWELS))] hand[x] = hand.get(x, 0) + 1 for i in range(numVowels, n): x = CONSONANTS[random.randrange(0,len(CONSONANTS))] hand[x] = hand.get(x, 0) + 1 return hand
defupdateHand(hand, word): """ Assumes that 'hand' has all the letters in word. In other words, this assumes that however many times a letter appears in 'word', 'hand' has at least as many of that letter in it. Updates the hand: uses up the letters in the given word and returns the new hand, without those letters in it. Has no side effects: does not modify hand. word: string hand: dictionary (string -> int) returns: dictionary (string -> int) """ # TO DO ... <-- Remove this comment when you code this function new = hand.copy() for letter in word: new[letter] -= 1 return new
defisValidWord(word, hand, wordList): """ Returns True if word is in the wordList and is entirely composed of letters in the hand. Otherwise, returns False. Does not mutate hand or wordList. word: string hand: dictionary (string -> int) wordList: list of lowercase strings """ # TO DO ... <-- Remove this comment when you code this function if word notin wordList: returnFalse for a in word: if hand.get(a,0) < getFrequencyDict(word)[a]: returnFalse returnTrue
这个函数也可以直接用一行写完。但似乎在可读性和效率上,也没有一行写完的必要?
1 2
# 2rd solution : one line # return word in wordList and all(hand.get(a, 0) >= b for a, b in getFrequencyDict(word).items())
calculateHandlen(hand)
计算拼字猜测中,总计包含的字母数量
1 2 3 4 5 6 7 8 9 10 11 12
defcalculateHandlen(hand): """ Returns the length (number of letters) in the current hand. hand: dictionary (string-> int) returns: integer """ # TO DO... <-- Remove this comment when you code this function sum = 0 for i in range(len(hand.keys())): sum += list(hand.values())[i] return sum
这个比较适合一行写完
1 2
# 2rd solution: # return sum(x for x in hand.values())
defplayHand(hand, wordList, n): """ Allows the user to play the given hand, as follows: * The hand is displayed. * The user may input a word or a single period (the string ".") to indicate they're done playing * Invalid words are rejected, and a message is displayed asking the user to choose another word until they enter a valid word or "." * When a valid word is entered, it uses up letters from the hand. * After every valid word: the score for that word is displayed, the remaining letters in the hand are displayed, and the user is asked to input another word. * The sum of the word scores is displayed when the hand finishes. * The hand finishes when there are no more unused letters or the user inputs a "." hand: dictionary (string -> int) wordList: list of lowercase strings n: integer (HAND_SIZE; i.e., hand size required for additional points) """ score = 0 # As long as there are still letters left in the hand: while calculateHandlen(hand) > 0: # Display the hand print("Current Hand:",end = ' ') displayHand(hand) # Ask user for input newin = input("Enter word, or a '.' to indicate that you are finished: ") # If the input is a single period: if newin == ".": # End the game (break out of the loop) break # Otherwise (the input is not a single period): else: # If the word is not valid: if isValidWord(newin, hand, wordList) == False: # Reject invalid word (print a message followed by a blank line) print("Invalid word, please try again.") # Otherwise (the word is valid): else: # Tell the user how many points the word earned, and the updated total score, in one line followed by a blank line current_score = getWordScore(newin, n) score += current_score print(newin + " earned " + str (current_score) + " points. Total: " + str(score)) # Update the hand hand = updateHand(hand, newin) # Game is over (user entered a '.' or ran out of letters), so tell user the total score if newin == '.': print('Goodbye! Total score:', score, 'points.') else: print('Run out of letters. Total score:', score, 'points.')
defplayGame(wordList): """ Allow the user to play an arbitrary number of hands. 1) Asks the user to input 'n' or 'r' or 'e'. * If the user inputs 'n', let the user play a new (random) hand. * If the user inputs 'r', let the user play the last hand again. * If the user inputs 'e', exit the game. * If the user inputs anything else, tell them their input was invalid. 2) When done playing the hand, repeat from step 1 """ n = HAND_SIZE hand= {} whileTrue: choice = input("Enter n to deal a new hand, r to replay the last hand, or e to end game: ") if choice == 'r': ifnot hand: print('You have not played a hand yet. Please play a new hand first!') else: playHand(hand, wordList, n) elif choice == 'n': hand = dealHand(n) playHand(hand, wordList, n) elif choice == 'e': break else: print("Invalid command.")
defcompChooseWord(hand, wordList, n): """ Given a hand and a wordList, find the word that gives the maximum value score, and return it. This word should be calculated by considering all the words in the wordList. If no words in the wordList can be made from the hand, return None. hand: dictionary (string -> int) wordList: list (string) n: integer (HAND_SIZE; i.e., hand size required for additional points) returns: string or None """ # Create a new variable to store the maximum score seen so far (initially 0) bestScore = 0 # Create a new variable to store the best word seen so far (initially None) bestWord = None # For each word in the wordList for word in wordList: # If you can construct the word from your hand if isValidWord(word, hand, wordList): # find out how much making that word is worth score = getWordScore(word, n) # If the score for that word is higher than your best score if (score > bestScore): # update your best score, and best word accordingly bestScore = score bestWord = word # return the best word you found return bestWord
defcompPlayHand(hand, wordList, n): """ Allows the computer to play the given hand, following the same procedure as playHand, except instead of the user choosing a word, the computer chooses it. 1) The hand is displayed. 2) The computer chooses a word. 3) After every valid word: the word and the score for that word is displayed, the remaining letters in the hand are displayed, and the computer chooses another word. 4) The sum of the word scores is displayed when the hand finishes. 5) The hand finishes when the computer has exhausted its possible choices (i.e. compChooseWord returns None). hand: dictionary (string -> int) wordList: list (string) n: integer (HAND_SIZE; i.e., hand size required for additional points) """ # Keep track of the total score totalScore = 0 # As long as there are still letters left in the hand: while (calculateHandlen(hand) > 0) : # Display the hand print("Current Hand: ", end=' ') displayHand(hand) # computer's word word = compChooseWord(hand, wordList, n) # If the input is a single period: if word == None: # End the game (break out of the loop) break # Otherwise (the input is not a single period): else : # If the word is not valid: if (not isValidWord(word, hand, wordList)) : print('This is a terrible error! I need to check my own code!') break # Otherwise (the word is valid): else : # Tell the user how many points the word earned, and the updated total score score = getWordScore(word, n) totalScore += score print('"' + word + '" earned ' + str(score) + ' points. Total: ' + str(totalScore) + ' points') # Update hand and show the updated hand to the user hand = updateHand(hand, word) print() # Game is over (user entered a '.' or ran out of letters), so tell user the total score print('Total score: ' + str(totalScore) + ' points.')
defplayGame(wordList): """ Allow the user to play an arbitrary number of hands. 1) Asks the user to input 'n' or 'r' or 'e'. * If the user inputs 'e', immediately exit the game. * If the user inputs anything that's not 'n', 'r', or 'e', keep asking them again. 2) Asks the user to input a 'u' or a 'c'. * If the user inputs anything that's not 'c' or 'u', keep asking them again. 3) Switch functionality based on the above choices: * If the user inputted 'n', play a new (random) hand. * Else, if the user inputted 'r', play the last hand again. * If the user inputted 'u', let the user play the game with the selected hand, using playHand. * If the user inputted 'c', let the computer play the game with the selected hand, using compPlayHand. 4) After the computer or user has played the hand, repeat from step 1 wordList: list (string) """ # TO DO... <-- Remove this comment when you code this function # print("playGame not yet implemented.") # <-- Remove this when you code this function n = HAND_SIZE hand= {} whileTrue: choice = input("Enter n to deal a new hand, r to replay the last hand, or e to end game: ") if choice == 'n': hand = dealHand(n) whileTrue: who = input("Enter u to have yourself play, c to have the computer play: ") if who notin ['u','c']: print('Invalid command.') else: break if who == 'u': playHand(hand, wordList, n) else: compPlayHand(hand, wordList, n) elif choice == 'e': break elif choice == 'r': ifnot hand: print('You have not played a hand yet. Please play a new hand first!') else: whileTrue: who = input("Enter u to have yourself play, c to have the computer play: ") if who notin ('u', 'c'): print('Invalid command.') else: break if who == 'u': playHand(hand, wordList, n) elif who == 'c': compPlayHand(hand, wordList, n) else: print("Invalid command.")
游戏运行
1 2 3
if __name__ == '__main__': wordList = loadWords() playGame(wordList)
Loading word list from file...
83667 words loaded.
Enter n to deal a new hand, r to replay the last hand, or e to end game: n
Enter u to have yourself play, c to have the computer play: c
Current Hand: u e w c x f n
"enuf" earned 28 points. Total: 28 points
Current Hand: w c x
Total score: 28 points.
Enter n to deal a new hand, r to replay the last hand, or e to end game: r
Enter u to have yourself play, c to have the computer play: u
Current Hand: u e w c x f n
Enter word, or a '.' to indicate that you are finished: 。
Invalid word, please try again.
Current Hand: u e w c x f n
Enter word, or a '.' to indicate that you are finished: .
Goodbye! Total score: 0 points.
Enter n to deal a new hand, r to replay the last hand, or e to end game: e
项目参考资料
John V. Guttag - Introduction to Computation and Programming Using Python_ With Application to Understanding Data (2016, The MIT Press)
def isWordGuessed(secretWord, lettersGuessed): ''' secretWord: string, the word the user is guessing lettersGuessed: list, what letters have been guessed so far returns: boolean, True if all the letters of secretWord are in lettersGuessed; False otherwise ''' gussed = True for elm in secretWord: if elm not in lettersGuessed: gussed = False return gussed
getGuessedWord(secretWord, lettersGuessed)
1 2 3 4 5 6 7 8 9 10 11 12
def getGuessedWord(secretWord, ): ''' secretWord: string, the word the user is guessing lettersGuessed: list, what letters have been guessed so far returns: string, comprised of letters and underscores that represents what letters in secretWord have been guessed so far. ''' ans = list(secretWord) for i in range(0,len(secretWord)): if ans[i] not in lettersGuessed: ans[i] = ' _ ' return ''.join(ans)
getAvailableLetters(lettersGuessed)
1 2 3 4 5 6 7 8 9 10 11 12
def getAvailableLetters(lettersGuessed): ''' lettersGuessed: list, what letters have been guessed so far returns: string, comprised of letters that represents what letters have not yet been guessed. ''' alpha = list(string.ascii_lowercase) ans =[] for i in range(0,len(alpha)): if alpha[i] not in lettersGuessed: ans.append(alpha[i]) return ''.join(ans)
* At the start of the game, let the user know how many letters the secretWord contains.
* Ask the user to supply one guess (i.e. letter) per round.
* The user should receive feedback immediately after each guess about whether their guess appears in the computers word.
* After each round, you should also display to the user the partially guessed word so far, as well as letters that the user has not yet guessed.
Follows the other limitations detailed in the problem write-up. ''' num_word = len(secretWord) print("Welcome to the game, Hangman!") print("I am thinking of a word that is " + str(num_word) + " letters long.") print("-----------") letters_Guessed = [] left_guess = 8 while left_guess > 0: print("You have " + str(left_guess) + " guesses left.") print("Available letters: " + str(getAvailableLetters(letters_Guessed))) # get input guess from player: # Please guess a letter: a new_input_letter = input("Please guess a letter: ") # Case one : if You have alreaday guessed while new_input_letter in letters_Guessed: print("Oops! You've already guessed that letter: " + str(getGuessedWord(secretWord, letters_Guessed))) print("-----------") print("You have " + str(left_guess) + " guesses left.") print("Available letters: " + str(getAvailableLetters(letters_Guessed))) new_input_letter = input("Please guess a letter: ") letters_Guessed.append(new_input_letter) # Case Two: success guess if new_input_letter in secretWord: print("Good guess: " + str(getGuessedWord(secretWord, letters_Guessed))) print("-----------") else : print("Oops! That letter is not in my word: " + str(getGuessedWord(secretWord, letters_Guessed))) print("-----------") left_guess -= 1 # check the game win condition if isWordGuessed(secretWord, letters_Guessed): print("Congratulations, you won!") return None print("Sorry, you ran out of guesses. The word was else.") return None
Welcome to the game, Hangman! I am thinking of a word that is 1 letters long. ----------- You have 8 guesses left. Available letters: abcdefghijklmnopqrstuvwxyz Please guess a letter: c Good guess: c ----------- Congratulations, you won! None
2:单词中是重复字母的情况
1 2 3 4 5 6 7 8 9 10
Welcome to the game, Hangman! I am thinking of a word that is 3 letters long. ----------- You have 8 guesses left. Available letters: abcdefghijklmnopqrstuvwxyz Please guess a letter: z Good guess: zzz ----------- Congratulations, you won! None
Welcome to the game, Hangman! I am thinking of a word that is 1 letters long. ----------- You have 8 guesses left. Available letters: abcdefghijklmnopqrstuvwxyz Please guess a letter: a Oops! That letter is not in my word: _ ----------- You have 7 guesses left. Available letters: bcdefghijklmnopqrstuvwxyz Please guess a letter: b Oops! That letter is not in my word: _ ----------- You have 6 guesses left. Available letters: cdefghijklmnopqrstuvwxyz Please guess a letter: d Oops! That letter is not in my word: _ ----------- You have 5 guesses left. Available letters: cefghijklmnopqrstuvwxyz Please guess a letter: e Oops! That letter is not in my word: _ ----------- You have 4 guesses left. Available letters: cfghijklmnopqrstuvwxyz Please guess a letter: f Oops! That letter is not in my word: _ ----------- You have 3 guesses left. Available letters: cghijklmnopqrstuvwxyz Please guess a letter: g Oops! That letter is not in my word: _ ----------- You have 2 guesses left. Available letters: chijklmnopqrstuvwxyz Please guess a letter: h Oops! That letter is not in my word: _ ----------- You have 1 guesses left. Available letters: cijklmnopqrstuvwxyz Please guess a letter: i Oops! That letter is not in my word: _ ----------- Sorry, you ran out of guesses. The word was else. None
Welcome to the game, Hangman! I am thinking of a word that is 3 letters long. ----------- You have 8 guesses left. Available letters: abcdefghijklmnopqrstuvwxyz Please guess a letter: a Good guess: _ _ a ----------- You have 8 guesses left. Available letters: bcdefghijklmnopqrstuvwxyz Please guess a letter: e Good guess: _ ea ----------- You have 8 guesses left. Available letters: bcdfghijklmnopqrstuvwxyz Please guess a letter: a Oops! You've already guessed that letter: _ ea ----------- You have 8 guesses left. Available letters: bcdfghijklmnopqrstuvwxyz Please guess a letter: e Oops! You've already guessed that letter: _ ea ----------- You have 8 guesses left. Available letters: bcdfghijklmnopqrstuvwxyz Please guess a letter: s Good guess: sea ----------- Congratulations, you won! None
Welcome to the game, Hangman! I am thinking of a word that is 1 letters long. ----------- You have 8 guesses left. Available letters: abcdefghijklmnopqrstuvwxyz Please guess a letter: x Oops! That letter is not in my word: _ ----------- You have 7 guesses left. Available letters: abcdefghijklmnopqrstuvwyz Please guess a letter: z Oops! That letter is not in my word: _ ----------- You have 6 guesses left. Available letters: abcdefghijklmnopqrstuvwy Please guess a letter: x Oops! You've already guessed that letter: _ ----------- You have 6 guesses left. Available letters: abcdefghijklmnopqrstuvwy Please guess a letter: z Oops! You've already guessed that letter: _ ----------- You have 6 guesses left. Available letters: abcdefghijklmnopqrstuvwy Please guess a letter: y Good guess: y ----------- Congratulations, you won! None
读取文件的fread() fread(data,size,number,inptr) data: pointer to such truct that will contain the bytes you are reading size: size of each element to read sizeof number: number of elements to read inptr: FILE * to read from
// get the name of a forensic image as command-line argument intmain(int argc, char *argv[]) { // ensure proper usage if (argc != 2) { fprintf(stderr, "Usage: recover infile outfile\n"); return1; }
// remember input filenames from the only argument char *infile = argv[1];
// open input file FILE *inptr = fopen(infile, "r"); if (inptr == NULL) { fprintf(stderr, "Could not open %s.\n", infile); return2; }
//read file and check the first 4 signature BYTE buffer[512];
char filename[8]; FILE *image = NULL; int newnameJPEG = 0; // check whether it is a JPEG start bool isJPEG = false; while (fread(buffer, sizeof(buffer), 1, inptr) == 1) { //check whether the first 4 buffer indicates a JPEG if (buffer[0] == 0xff && buffer[1] == 0xd8 && buffer[2] == 0xff && (buffer[3] & 0xf0) == 0xe0)
{ isJPEG = true;
//making a new JPEG sprintf(filename, "%03i.jpg", newnameJPEG);
//create file(JPEG) to write image = fopen(filename, "w");
//prepare next newnameJPEG ++; } if (isJPEG == true) { fwrite(buffer, sizeof(buffer), 1, image); }
// open input file FILE *inptr = fopen(infile, "r"); // if input file cannot be opened for reading // return 2 and reming if (inptr == NULL) { fprintf(stderr, "Could not open %s.\n", infile); return2; }
// open output file FILE *outptr = fopen(outfile, "w"); // if the output file cannot be opened for writing // return 3 and remind if (outptr == NULL) { fclose(inptr); fprintf(stderr, "Could not create %s.\n", outfile); return3; }
// determine padding for scanlines int padding = (4 - (bi.biWidth * sizeof(RGBTRIPLE)) % 4) % 4;
// iterate over infile's scanlines for (int i = 0, biHeight = abs(bi.biHeight); i < biHeight; i++) { // iterate over pixels in scanline for (int j = 0; j < bi.biWidth; j++) { // temporary storage RGBTRIPLE triple;
// read RGB triple from infile fread(&triple, sizeof(RGBTRIPLE), 1, inptr);
//TODO: change the color of red to white if (triple.rgbtBlue == 0x00 && triple.rgbtGreen == 0x00 && triple.rgbtRed == 0xff) { triple.rgbtBlue = 0xff; triple.rgbtGreen = 0xff; }
// BMP-related data types based on Microsoft's own
#include<stdint.h>
// aliases for C/C++ primitive data types // https://msdn.microsoft.com/en-us/library/cc230309.aspx typedefuint8_t BYTE; typedefuint32_t DWORD; typedefint32_t LONG; typedefuint16_t WORD;
// information about the type, size, and layout of a file // https://msdn.microsoft.com/en-us/library/dd183374(v=vs.85).aspx typedefstruct { WORD bfType; DWORD bfSize; WORD bfReserved1; WORD bfReserved2; DWORD bfOffBits; } __attribute__((__packed__)) BITMAPFILEHEADER;
// information about the dimensions and color format // https://msdn.microsoft.com/en-us/library/dd183376(v=vs.85).aspx typedefstruct { DWORD biSize; LONG biWidth; LONG biHeight; WORD biPlanes; WORD biBitCount; DWORD biCompression; DWORD biSizeImage; LONG biXPelsPerMeter; LONG biYPelsPerMeter; DWORD biClrUsed; DWORD biClrImportant; } __attribute__((__packed__)) BITMAPINFOHEADER;
// relative intensities of red, green, and blue // https://msdn.microsoft.com/en-us/library/dd162939(v=vs.85).aspx typedefstruct { BYTE rgbtBlue; BYTE rgbtGreen; BYTE rgbtRed; } __attribute__((__packed__)) RGBTRIPLE;
/** * Prompts user for a line of text from standard input and returns * it as a string (char *), sans trailing line ending. Supports * CR (\r), LF (\n), and CRLF (\r\n) as line endings. If user * inputs only a line ending, returns "", not NULL. Returns NULL * upon error or no input whatsoever (i.e., just EOF). Stores string * on heap, but library's destructor frees memory on program's exit. */
// Converts a fraction formatted as X/Y to eighths intduration(string fraction) { string X = strtok(fraction, "/"); int x = atoi(X); string Y = strtok(NULL, "/"); int y = atoi(Y); int output = x * pow(2, 3 - log2(y)) ; return output; }
// Calculates frequency (in Hz) of a note intfrequency(string note) { // set octave to store how to */ 2 // set half to store whether or not should * 2 ^ 1/12 // set hame to store how much it relate to A int octave = 4; int half = 0; int name = 0; // if the note is semi like A#4 if (strlen(note) == 3) { //get octave on A#4,minus char '4' octave = note[2] - '4'; // set half = 1 if # if (note[1] == '#') { half = 1; } // set half = -1 if b if (note[1] == 'b') { half = -1; } } // if no semi, the length of note is 2, like A4 if (strlen(note) == 2) { //get octave octave = note[1] - '4'; } // get name by char note[0] switch (note[0]) { case'C': name = -9; break; case'D': name = -7; break; case'E': name = -5; break; case'F': name = -4; break; case'G': name = -2; break; case'A': name = 0; break; case'B': name = 2; } //calculate the frequency and return the int output int freq = 0; freq = round(440 * pow(2.00, (name + half) / 12 + octave)); return freq; } // Determines whether a string represents a rest boolis_rest(string s) { // if it is "" return false if (strncmp(s, "", 1)) { returnfalse; } else { returntrue; } }
intmain(int argc, string argv[]) { // Check command line arguments if (argc != 2) { fprintf(stderr, "Usage: synthesize FILE\n"); return1; } string filename = argv[1]; // Open file for writing song s = song_open(filename); // Expect notes from user until EOF while (true) { // Expect note stringline = get_string(""); // Check for EOF if (line == NULL) { break; } // Check if line is rest if (is_rest(line)) { rest_write(s, 1); } else { // Parse line into note and duration string note = strtok(line, "@"); string fraction = strtok(NULL, "@"); // Write note to song note_write(s, frequency(note), duration(fraction)); } } // Close file song_close(s); }
intmain(int argc, string argv[]) { // Override default octave if specified at command line int octave = OCTAVE; if (argc == 2) { octave = atoi(argv[1]); if (octave < 0 || octave > 8) { //unvalid input actave fprintf(stderr, "Invalid octave\n"); return1; } } elseif (argc > 2) { //too much arguments fprintf(stderr, "Usage: notes [OCTAVE]\n"); return1; }
// Open file for writing song s = song_open("notes.wav");
// Add each semitone for (int i = 0, n = sizeof(NOTES) / sizeof(string); i < n; i++) { // Append octave to note char note[4]; sprintf(note, "%s%i", NOTES[i], octave);
// Calculate frequency of note int f = frequency(note);
// this is the vigenere cipher program intmain(int argc, string argv[]) { if (argc != 2) { printf("the input argument is error!\n"); return1; } else { for (int i = 0; i < strlen(argv[1]); i ++) { if (isalpha(argv[1][i]) == 0) { printf("the key string is not valid!\n"); return1; } } } string str_key = argv[1];
// get plaintext string p = get_string("plaintext: ");
// encipher the plaintext for (int i = 0, num_valid = 0; i < strlen(p) ; i++) { // get the key in key string int key = tolower(str_key[num_valid % strlen(str_key)]) - 'a'; // exchange with key if (islower(p[i]) != 0) { num_valid ++; p[i] = 'a' + ((p[i] - 'a' + key) % 26); } else { if (isupper(p[i]) != 0) { num_valid ++; p[i] = 'A' + ((p[i] - 'A' + key) % 26); } } } // output the ciphertext printf("ciphertext: %s\n", p); return0; }
:) identifies 378282246310005 as AMEX :) identifies 371449635398431 as AMEX :) identifies 5555555555554444 as MASTERCARD :) identifies 5105105105105100 as MASTERCARD :) identifies 4111111111111111 as VISA :) identifies 4012888888881881 as VISA :) identifies 1234567890 as INVALID :) identifies 369421438430814 as INVALID :) identifies 4062901840 as INVALID :) identifies 5673598276138003 as INVALID :) identifies 4111111111111113 as INVALID :) rejects a non-numeric input of "foo" :) rejects a non-numeric input of ""