This commit is contained in:
2025-01-13 19:20:29 -05:00
parent dff5fd0c60
commit 38af965ec5
4 changed files with 39 additions and 2 deletions

28
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,28 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}

View File

@@ -1,7 +1,7 @@
HOMEWORK 1: Spotify Playlists HOMEWORK 1: Spotify Playlists
NAME: < insert name > NAME: Jinshan Zhou
COLLABORATORS AND OTHER RESOURCES: COLLABORATORS AND OTHER RESOURCES:
@@ -17,7 +17,7 @@ own, as described in "Academic Integrity for Homework" handout.
ESTIMATE OF # OF HOURS SPENT ON THIS ASSIGNMENT: < insert # hours > ESTIMATE OF # OF HOURS SPENT ON THIS ASSIGNMENT: 2 hr

BIN
hws/spotify_playlists/nyplaylists Executable file

Binary file not shown.

View File

@@ -0,0 +1,9 @@
//import some basic library
#include <iostream>
#include <cmath>
#include <cstdlib>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}