Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jagoda11/cs50-problem-set-1
CS50-Problem-Set-1 🌟 covers programming basics like variables 📊, conditionals 🔄, loops ➰, and functions 📚. Students tackle practical tasks, building a foundation for advanced computer science topics 🔍
https://github.com/jagoda11/cs50-problem-set-1
c cs50 cs50problemsets loops variables
Last synced: 5 days ago
JSON representation
CS50-Problem-Set-1 🌟 covers programming basics like variables 📊, conditionals 🔄, loops ➰, and functions 📚. Students tackle practical tasks, building a foundation for advanced computer science topics 🔍
- Host: GitHub
- URL: https://github.com/jagoda11/cs50-problem-set-1
- Owner: Jagoda11
- Created: 2018-05-05T10:27:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-18T15:03:27.000Z (8 months ago)
- Last Synced: 2024-05-02T05:48:24.967Z (7 months ago)
- Topics: c, cs50, cs50problemsets, loops, variables
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CS50 Problem Set 1 📘
This repository contains my solutions to CS50's Problem Set 1. Below are the descriptions of each program included in this set.
## Hello, World! 👋
- **Filename:** `hello.c`
- **Description:** A simple C program that prints "hello, world" to the console. This program serves as an introduction to the basics of C programming.
## Mario 🏰- **Filename:** `mario.c`
- **Description:** This program creates a pyramid of a specified height, resembling the staircases in the Super Mario Brothers game. It demonstrates the use of nested loops in C.## Cash 💵
- **Filename:** `cash.c`
- **Description:** A program that calculates the minimum number of coins required to give a user change. It showcases basic arithmetic operations and conditional logic in C.## Guess the Number 🔢
- **Filename:** `guess.c`
- **Description:** This interactive program challenges the user to guess a randomly generated number between 1 and 10. It exemplifies the use of loops, conditionals, and the `rand()` function in C.## About CS50 🎓
CS50 is Harvard University's introduction to the intellectual enterprises of computer science and the art of programming. This problem set focuses on getting familiar with C programming and introduces basic concepts such as variables, conditions, loops, and functions.
---
Feel free to explore the code!