forgot to commit this

This commit is contained in:
SowinskiBraeden committed 2025-10-26 12:51:57 -07:00
1 parent 6a53c86e8f
commit f63842d487
14 files changed
+353 -20

No files matched your search

+20 -1
View File
@@ -1,8 +1,27 @@
#include <stdio.h>
/*
* Course: COMP 2510
* Assignment: Assignment 1
* Name: Braeden Sowinski
* Student ID: A01385066
* Date: 2025-09-20
* Description: Calculate download speeds from
* given file size and download speed
*/
#define MEGABYTES_TO_MEGABITS 8
int main(void) {
/**
* main program entry
*
* takes in user input for download speed
* int Mbs and file size in MBs
* and calculates the download speed
*/
int main(void)
{
float downloadSpeedMbs;
float fileSizeMB;
float downloadTimeSeconds;