{"id":26205039,"url":"https://github.com/mauropelucchi/unibg_dev_courses_2024","last_synced_at":"2025-04-15T07:39:10.010Z","repository":{"id":269144323,"uuid":"863194693","full_name":"mauropelucchi/unibg_dev_courses_2024","owner":"mauropelucchi","description":"University of Bergamo - C++ Dev Course (Computer Engineering) 2023/2024","archived":false,"fork":false,"pushed_at":"2025-02-15T15:23:13.000Z","size":3656,"stargazers_count":15,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-15T16:27:06.170Z","etag":null,"topics":["coding","cpp","training-materials","university"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mauropelucchi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-25T22:04:50.000Z","updated_at":"2025-02-15T15:23:16.000Z","dependencies_parsed_at":"2024-12-21T09:35:26.750Z","dependency_job_id":null,"html_url":"https://github.com/mauropelucchi/unibg_dev_courses_2024","commit_stats":null,"previous_names":["mauropelucchi/unibg_dev_courses_2024"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauropelucchi%2Funibg_dev_courses_2024","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauropelucchi%2Funibg_dev_courses_2024/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauropelucchi%2Funibg_dev_courses_2024/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauropelucchi%2Funibg_dev_courses_2024/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mauropelucchi","download_url":"https://codeload.github.com/mauropelucchi/unibg_dev_courses_2024/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243158975,"owners_count":20245668,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["coding","cpp","training-materials","university"],"created_at":"2025-03-12T04:33:36.132Z","updated_at":"2025-03-12T04:34:15.199Z","avatar_url":"https://github.com/mauropelucchi.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# University of Bergamo - 21012 Dev Course C++ 2024/2025\n\nThis git repository contains the source code in C++ language to support the lessons of the C++ programming module of the first year of Computer Engineering for the University of Bergamo (IT).\n\nNote: some sources contain errors on purpose, they will be solved during the lessons in class with the students.\n\nSome exercises are a selection of tasks and works collected from the series proposed by Prof. Giuseppe Psaila, Gerardo Pelosi at the University of Bergamo. Other exercises come from books (some not recent and of difficult attribution). Part of the proposals have been extensively revised by me.\n\n# Getting Started\n- [Hello World](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/hello_world.cpp)\n- [Sum](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/sum.cpp)\n- [Sums](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/sums.cpp)\n- [Max](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/max.cpp)\n- [Maxs](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/maxs.cpp)\n\nSolution to Getting Started:\n- [Sum](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/sum_solved.cpp)\n- [Sums](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/sums_solved.cpp)\n- [Max](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/max_solved.cpp)\n- [Maxs](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/maxs_solved.cpp)\n\nExercizes\n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/exercize_1.cpp)\n- [Exercize 2](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/1_getting_started/exercize_2.cpp)\n\n# C++ Basics\n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/2_1_c++_basics/exercize_1.cpp)\n- [Exercize 2](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/2_1_c++_basics/exercize_2.cpp)\n- [Exercize 2 (solved)](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/2_1_c++_basics/exercize_2_solved.cpp)\n- [Exercize 3](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/2_1_c++_basics/exercize_3.cpp)\n\n# Control flows\n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/2_2_control_flows/exercize_1.cpp)\n- [Exercize 2](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/2_2_control_flows/exercize_2.cpp)\n- [Exercize 3](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/2_2_control_flows/exercize_3.cpp)\n- [Exercize 4](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/2_2_control_flows/exercize_4.cpp)\n- [Exercize 5](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/2_2_control_flows/exercize_5.cpp)\n\n# Small Applications\n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/3_small_applications/exercize_1.cpp)\n- [Exercize 2a](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/3_small_applications/exercize_2_a.cpp)\n- [Exercize 2b](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/3_small_applications/exercize_2_b.cpp)\n- [Exercize 2c](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/3_small_applications/exercize_2_c.cpp)\n- [Exercize 3](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/3_small_applications/exercize_3.cpp)\n- [Exercize 4a](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/3_small_applications/exercize_4_a.cpp)\n- [Exercize 4b](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/3_small_applications/exercize_4_b.cpp)\n- [Exercize 5](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/3_small_applications/exercize_5.cpp)\n- [Exercize 6](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/3_small_applications/exercize_6.cpp)\n\n# Functions\n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_1.cpp)\n- [Exercize 2a](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_2_a.cpp)\n- [Exercize 2b](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_2_b.cpp)\n- [Exercize 2c](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_2_c.cpp)\n- [Exercize 3](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_3.cpp)\n- [Exercize 4](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_4.cpp)\n- [Exercize 5](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_5.cpp)\n- [Exercize 6](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_6.cpp)\n- [Exercize 7](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_7.cpp)\n- [Exercize 8](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/4_functions/exercize_8.cpp)\n\n# Strings\n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/5_strings/exercize_1.cpp)\n- [Exercize 2](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/5_strings/exercize_2.cpp)\n- [Exercize 3](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/5_strings/exercize_3.cpp)\n- [Exercize 4](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/5_strings/exercize_4.cpp)\n- [Exercize 5](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/5_strings/exercize_5.cpp)\n- [Exercize 6](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/5_strings/exercize_6.cpp)\n- [Exercize 7](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/5_strings/exercize_7.cpp)\n\n\n# Pointers and Structs\n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/6_pointers/exercize_1.cpp)\n- [Exercize 2](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/6_pointers/exercize_2.cpp)\n- [Exercize 3](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/6_pointers/exercize_3.cpp)\n- [Exercize 4a](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/6_pointers/exercize_4_a.cpp)\n- [Exercize 4b](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/6_pointers/exercize_4_b.cpp)\n- [Exercize 5](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/6_pointers/exercize_5.cpp)\n- [Exercize 6](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/6_pointers/exercize_6.cpp)\n- [Exercize 7](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/6_pointers/exercize_7.cpp)\n\n\n# Recursive Functions \n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/7_recursive_functions/exercize_1.cpp)\n- [Exercize 2](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/7_recursive_functions/exercize_2.cpp)\n- [Exercize 3](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/7_recursive_functions/exercize_3.cpp)\n- [Exercize 4](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/7_recursive_functions/exercize_4.cpp)\n- [Exercize 5](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/7_recursive_functions/exercize_5.cpp)\n- [Exercize 6](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/7_recursive_functions/exercize_6.cpp)\n- [Exercize 7](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/7_recursive_functions/exercize_7.cpp)\n- [Exercize 8](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/7_recursive_functions/exercize_8.cpp)\n\n\n# Lists\n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8a_lists/exercize_1.cpp)\n- [Exercize 2](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8a_lists/exercize_2.cpp)\n- [Exercize 3](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8a_lists/exercize_3.cpp)\n- [Exercize 4](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8a_lists/exercize_4.cpp)\n- [Exercize 5](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8a_lists/exercize_5.cpp)\n- [Exercize 6](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8a_lists/exercize_6.cpp)\n- [Exercize 7](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8a_lists/exercize_7.cpp)\n- [Exercize 8](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8a_lists/exercize_8.cpp)\n\n\n# Files\n- [Exercize 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8b_files/exercize_1.cpp)\n- [Exercize 2](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/8b_files/exercize_2.cpp)\n\n\n# Bonus\n- [Bonus 1](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/bonus/1_bonus.cpp)\n- [Bonus 2](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/bonus/2_bonus.cpp)\n- [Bonus 3](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/bonus/3_bonus.cpp)\n- [Bonus 4](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/bonus/4_bonus.cpp)\n- [Bonus 5](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/bonus/5_bonus.cpp)\n- [Bonus 6](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/bonus/6_bonus.cpp)\n- [Bonus 7](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/bonus/7_bonus.cpp)\n\n\n# Homeworks\n- [Celsius Converter Table](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/homeworks/1_celsius_converter_table.cpp)\n- [Calc](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/homeworks/2_calc.cpp)\n- [Array](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/homeworks/3_array.cpp)\n- [Strings](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/homeworks/4_strings.cpp)\n- [Structs](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/homeworks/5_structs.cpp)\n\n# Exams\n- [20151221](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20151221.cpp)\n- Text: [20200617](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20200617.pdf) Solution: [20200617](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20200617.cpp)\n- Text: [20190222](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20190222.pdf) Solution: [20190222](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20190222.cpp)\n- Text: [20200221](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20200221.pdf) Solution: [20200221](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20200221.cpp)\n- Text: [20190123](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20190123.pdf) Solution: [20190123](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20190123.cpp)\n- Text: [20180222](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20180222.pdf) Solution: [20190123](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20180222.cpp)\n- Text: [20180131](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20180131.pdf) Solution: [20180131](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20180131.cpp)\n- Text: [20170224](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20170224.pdf) Solution: [20170224](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20170224.cpp)\n- Text: [20170127](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20170127.pdf) Solution: [20170127](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20170127.cpp)\n- Text: [20200109](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20200109.pdf) Solution: [20200109](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20200109.cpp)\n- Text: [20210122](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20210122.pdf) Solution: [20210122](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20210122.pdf)\n- Text: [20240117](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20240117.pdf) Solution: [20240117](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20240117.cpp)\n- Text: [20240702](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20240702.pdf) Solution: [20240702](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20240702.cpp)\n- Text: [20240618](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20240618.pdf) Solution: [20240618](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20240618.cpp)\n- Text: [20250115](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/te20250115.pdf) Solution: [20250115](https://github.com/mauropelucchi/unibg_dev_courses_2024/blob/main/exams/20250115.cpp)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauropelucchi%2Funibg_dev_courses_2024","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmauropelucchi%2Funibg_dev_courses_2024","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauropelucchi%2Funibg_dev_courses_2024/lists"}