algorithm for waking in the morning, making and eating breakfast, I don't feel this is enough for my teacher can you help me.

start
get up
while not awake
drink coffee
endwhile
if temperature < 65 then
wear sweater
else
wear t-shirt
endif
if hungry then
eat breakfast
endif
while do not have keys
search for keys
endwhile
stop

What about?

going to the bathroom
washing/showering
getting dressed
going to kitchen
making coffee
what food for breakfast

do i have enough coding in this, it's for CPT 168 Logic and design

I'm sorry -- but I know nothing about coding.

Your initial algorithm is a good start for waking up in the morning, but it seems like your teacher wants you to add more steps. Here's an expanded algorithm that includes making and eating breakfast:

start
get up
while not awake
drink coffee
endwhile
if temperature < 65 then
wear sweater
else
wear t-shirt
endif
if hungry then
make breakfast
while meal is not ready
gather ingredients
preheat stove
cook food
endwhile
eat breakfast
endif
while do not have keys
search for keys
endwhile
stop

This expanded algorithm includes making breakfast as an additional step and outlines the sub-steps involved in making the breakfast. It ensures that you have a complete routine for your morning tasks.