随笔分类 -  哈佛cs50

该文被密码保护。
posted @ 2023-07-12 16:24 致命一姬 阅读(0) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2023-07-12 10:15 致命一姬 阅读(0) 评论(0) 推荐(0)
摘要:(1)lab7 songs sqlite3 songs.db 1)list the names of all songs in the database SELECT name FROM songs; 2)list names of all songs in increasing order of 阅读全文
posted @ 2023-07-09 17:47 致命一姬 阅读(176) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2023-07-08 17:29 致命一姬 阅读(0) 评论(0) 推荐(0)
摘要:(1)lab6 world cup # Simulate a sports tournament import csv import sys import random # Number of simluations to run N = 1000000 #1000 def main(): # En 阅读全文
posted @ 2023-07-07 17:05 致命一姬 阅读(61) 评论(0) 推荐(0)
摘要:(1)lab5 - inheritance // Simulate genetic inheritance of blood type #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <time.h> // E 阅读全文
posted @ 2023-07-05 16:57 致命一姬 阅读(67) 评论(0) 推荐(0)
摘要:(1)lab4-Smiley helpers.c #include "helpers.h" void colorize(int height, int width, RGBTRIPLE image[height][width]) { // Change all black pixels to a c 阅读全文
posted @ 2023-07-03 19:33 致命一姬 阅读(85) 评论(0) 推荐(0)
摘要:lab2 #include <ctype.h> #include <cs50.h> #include <stdio.h> #include <string.h> // Points assigned to each letter of the alphabet int POINTS[] = {1, 阅读全文
posted @ 2023-06-28 14:19 致命一姬 阅读(84) 评论(0) 推荐(0)
摘要:|lab1| #include <cs50.h> #include <stdio.h> int main(void) { // TODO: Prompt for start size int start_size; do{ start_size = get_int("Start size: "); 阅读全文
posted @ 2023-06-26 18:39 致命一姬 阅读(45) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2023-06-25 20:25 致命一姬 阅读(0) 评论(0) 推荐(0)