add MP1, lab2

This commit is contained in:
2024-02-28 16:11:37 -06:00
parent 9c5130ccc3
commit 7245240a85
34 changed files with 2171 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/cppFiles/main.cc to edit this template
*/
/*
* File: main.cpp
* Author: caleb
*
* Created on February 26, 2024, 11:30AM
*/
#include <cstdlib>
using namespace std;
/*
*
*/
/**
* Write a program that asks for five test scores.
* The program should calculate theaverage
* @param argc
* @param argv
* @return
*/
int main(int argc, char** argv) {
return 0;
}