Simple overview of use/purpose.
An in-depth paragraph about your project and overview of use.
| from cs50 import cs50 | |
| alphabet = "abcdefghijklmnopqrstuvwxyz" | |
| alphabetcap = alphabet.upper() | |
| cyphertext = "" | |
| word = input("Please enter in a word to be encrypted: ") | |
| key = int(input("Please enter a numnber to use as the encryption key: ")) |
| from cs50 import cs50 | |
| while True: | |
| change = cs50.get_float("How much change do you need: ") | |
| if change < 100 and change > 0: | |
| break | |
| numQ, numD, numN, numP = [0,0,0,0] | |
| while change >= 25: |
| from cs50 import cs50 | |
| y=cs50.get_int("Enter a number between 0 and 23: ") | |
| while y > 23 or y < 0: | |
| y=cs50.get_int("Bruhh, try again! Gotta be between 0 and 23: ") | |
| if y <= 23 and y >= 0: | |
| for x in range (0,y): | |
| print(" " *(y-x), end="") |
| /* This is for Harvard's CS50. Try the code out - it should get the job done. If you have any questiond or wanna tell me | |
| that my style looks like shit feel free to hmu at s.velaga@uky.edu */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include "bmp.h" | |
| int main(int argc, char* argv[]) | |
| { |
| /* CS50 solution. Feel free to check with any online compiler. To get credit from Harvard you may have to make a few changes. | |
| hmu at s.velaga@uky.edu if you have any questions. Also I haven't learned about proper code style and formatting - | |
| if you wanna hmu to tell me this looks like shit and how to make it look better pls do */ | |
| #include <stdio.h> //includes fget and stdin // | |
| #include <ctype.h> // used for isupper, islower, toupper, tolower | |
| #include <stdlib.h> | |
| #include <string.h> //used for strlen | |
| int main() |
| /* CS50 solution. Feel free to check with any online compiler. To get credit from Harvard you may have to make a few changes. | |
| hmu at s.velaga@uky.edu if you have any questions. Also I haven't learned about proper code style and formatting - | |
| if you wanna hmu to tell me this looks like shit and how to make it look better pls do */ | |
| #include <stdio.h> //includes fget and stdin // | |
| #include <ctype.h> | |
| #include <stdlib.h> | |
| #include <string.h> //used for strlen // | |
| int main() |
| /* CS50 solution. Feel free to check with any online compiler. To get credit from Harvard you may have to make a few changes. | |
| hmu at s.velaga@uky.edu if you have any questions. Also I haven't learned about proper code style and formatting - | |
| if you wanna hmu to tell me this looks like shit and how to make it look better pls do */ | |
| #include <stdio.h> | |
| #include <inttypes.h> | |
| int main () | |
| { |
| /* CS50 solution. Feel free to check with any online compiler. To get credit from Harvard you may have to make a few changes. | |
| hmu at s.velaga@uky.edu if you have any questions. */ | |
| #include <stdio.h> | |
| int main() | |
| { | |
| int c; | |
| int numQ=0, numD=0, numN=0, numP=0, numcoins=0; |
| /* CS50 solution. Feel free to check with any online compiler. To get credit from Harvard you may have to make a few changes. | |
| hmu at s.velaga@uky.edu if you have any questions. */ | |
| #include <stdio.h> | |
| int main( ) | |
| { | |
| int h; |