trying to think of a way to help it run and get user input.
'initialize variables
patientName = "NO NAME"
breakfastFat = 0 'will store the fat grams I've eaten for breakfast
lunchfat = 0
breakfastCarb = 0 'will store the carb for breakfast
'Calculated variables
totalFat = 0 ' will store fat intake
totalCarbs = 0 'will store carb intake
carbCalories=0
fatCalories=0
'Main module
'calls to module
obtainMealData()
calcCalories()
displayData()
'--------------------------
'put modules below
Sub obtainMealData
'take in all 9 variables
EndSub
Sub calcCalories
'calc the totals
totalCarbs = breakfastCarb + lunchCarb ' and so on
totalFat =
carbCalories = totalCarbs * 9
fatCalories
EndSub
Sub displayData
EndSub