Thanks. My day would be ruined without this video. I love education only when I know what I am doing and am confident, which this video helps with.
@DymiandWebb3 ай бұрын
Thanks for your help, much appreciated
@jcdragneel5 ай бұрын
Is this project suppose to be have a template provided for it? My previous courses [python, SQL, Java even] have given students a template to work from, but my professor just basically threw a pseudocode and the project directions at us with no ground work to work from. I'm still trying to manage learning how to work C++ and its functions so far and have no idea how to start this project. The Sense tutorials broke down each portion and had us work on how to make a few things work, but we have to still make our own based on some remedial tutorial and have everything piggy back off of each other. I have no idea if this will be seen in time, but is there a way that you could provide the template that you had for your class?
@donelleaguayo43682 ай бұрын
This has been my experience. A lot of the professors do not provide this information in the modules and the prompt does not specify any of this, nor was it provided in the resources. It seems that your just expected to find it online somewhere. This is a horrible program.
@djratio98895 ай бұрын
# Prompt the user to input an integer between 32 and 126 integer_input = int(input("Enter integer (32 - 126): ")) # Prompt the user to input a float float_input = float(input("Enter float: ")) # Prompt the user to input a character char_input = input("Enter character: ") # Prompt the user to input a string string_input = input("Enter string: ") # Output the four values on a single line separated by a space print(f"{integer_input} {float_input} {char_input} {string_input}") # Output the four values in reverse order print(f"{string_input} {char_input} {float_input} {integer_input}") # Convert the integer to a character using the chr() function converted_char = chr(integer_input) # Output the converted character print(f"{integer_input} converted to a character is {converted_char}")
@IeishaThompkins5 ай бұрын
can you help me with section 1.11 data frames?
@gayvinkambull61645 ай бұрын
Not sure why but my PyCharm didn’t auto open a file like yours did and the .gitignore file is ø
@mattparker56635 ай бұрын
@gayvinkambull6164 ...I haven't taught the course since this recording was posted. Things might have changed
@gayvinkambull61645 ай бұрын
@@mattparker5663 well.. that is unfortunate but I do appreciate you responding!
@chidij206 ай бұрын
🙏🏽Thank you so very much I did as you instructed and I got everything. How do I subscribe twice to your channel 🙌🏽🙌🏽😂😂. For anyone who needs to copy code, here is mine below; Just copy, paste and run 😤😎 import java.util.Scanner; public class LabProgram { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); int totalChangeAmount; int numDollars; int numQuarters; int numDimes; int numNickels; int numPennies; totalChangeAmount = scnr.nextInt(); if (totalChangeAmount <= 0) { System.out.println("No change"); } else; numDollars = totalChangeAmount / 100; numQuarters = (totalChangeAmount % 100) / 25; numDimes = ((totalChangeAmount % 100) % 25) / 10; numNickels = (((totalChangeAmount % 100) % 25) % 10) / 5; numPennies = ((((totalChangeAmount % 100) % 25) % 10) % 5) / 1; if (numDollars > 1) { System.out.println( numDollars + " Dollars"); } else if (numDollars == 1) { System.out.println( numDollars + " Dollar"); } if (numQuarters > 1) { System.out.println( numQuarters + " Quarters"); } else if (numQuarters == 1) { System.out.println( numQuarters + " Quarter"); } if (numDimes > 1) { System.out.println( numDimes + " Dimes"); } else if (numDimes == 1) { System.out.println( numDimes + " Dime"); } if (numNickels > 1) { System.out.println( numNickels + " Nickels"); } else if (numNickels == 1) { System.out.println( numNickels + " Nickel"); } if (numPennies > 1) { System.out.println( numPennies + " Pennies"); } else if (numPennies == 1) { System.out.println( numPennies + " Penny"); } } }
@CREATUREwithEnergy6 ай бұрын
Your code isn’t ríght
@CREATUREwithEnergy6 ай бұрын
Thank you so much for making these videos! It helps me so much :D
@CREATUREwithEnergy6 ай бұрын
Did you do chapter 3? edit: I FOUND IT YAY THANK YOU
@ACDCrocks8017 ай бұрын
Wow thanks snhu for making me search high and low on youtube for someone to actually show me how to do the work, instead of having my teacher actually teach.
@JHendo2477 ай бұрын
all of my inputs are correct but I'm getting a 3/10 for the work.. I am not understanding this!!
@86Ryan8 ай бұрын
Thanks for the help
@CharliesOpus8 ай бұрын
Thank you!! Your videos are still incredibly helpful even though I'm not in your class anymore. I really wish you were my professor again this time around because this class is both miserable and frustrating with very little guidance. So i'm glad these are still available because it's the only way I have any idea what to do!
@GigasAhriman8 ай бұрын
You have a cool cat btw
@CryptbloomEnjoyer9 ай бұрын
Thank you for this. There is absolutely no way I am learning anything from just reading the Zybook.
@mr.spray859 ай бұрын
Thanks for all your help this term!
@billythenarwhal157910 ай бұрын
Is SNHU doing anything to switch to a better program for teaching this course? zyBooks is awful, I keep having to go to online tutorials to learn the material then jump back in to answer the questions.
@cj2200010 ай бұрын
Question: Would we link insert the getEndingBalance formula into the getEndingBalanceFormatted function then call round and format after that, still in the function? Also thank you so much for uploading this, it was a HUGE help🙏
@mr.spray8510 ай бұрын
Super helpful to have this following along in zyBooks!
@cj2200010 ай бұрын
HELP! I'm getting an green squiggly line error in the header file for the string function declarations saying "Function definition for 'functionName' not found", even though I defined it within the cpp within the recommended definition format by visual studio (as shown at 7:45). Is there a way to resolve this?? I'm not able to use the function properly in the main file as it won't take in any arguments.
@mattparker566310 ай бұрын
The function signature needs to match exactly as what is defined in the header file. Be sure that the return type is the same and has the same types for parameters. Oh, by the way...if you hover over the method name in Visual Studio, click 'Show Potential Fixes'...then 'Create definition...' and the method definition will be in the .cpp file.
@cj2200010 ай бұрын
@@mattparker5663 Thank you!
@jackbynum246011 ай бұрын
I can't get the code writing part it's like i missing a whole lesson or something
@mattparker566311 ай бұрын
@jackbynum2460...this recording didn't have a separate code writing portion.
@jackbynum246011 ай бұрын
@@mattparker5663 it's okay I figured out what I was doing wrong I was trying to add extra line of code for some reason that didn't need to be there
@AaronJohnson-ky5df11 ай бұрын
Matt, Do you have an upcoming IT140 course this spring semester?
@mattparker566311 ай бұрын
I am not scheduled for the class this spring
@BB-848-VAC8 ай бұрын
I think I'll be taking this during the last term of 2024. I am so excited to start programming so I guess I'll start here 😄
@calebbarrow1237 Жыл бұрын
honestly wish I could have transferred to this class it seems so much easier to comprehend.
@billythenarwhal15799 ай бұрын
I just wish zybooks actually taught what it was supposed to teach instead of me having to scower YT for how to make stuff.
@VenessaWaller Жыл бұрын
thank you so much for this!!
@itninja7771 Жыл бұрын
YOUR VIDIOS ARE WAY TOO DIFFICULT TO VIEW. YOU DID NOT EDIT THEM. GIVE BACK ANY MONETARY FUNDS FROM KZbin
@ITninja2-ez9rs Жыл бұрын
Again, other content producers and lecturing on python have enlarged the vidio text . Yours is still too small. blow it up and enlarge the screen content. Otherwise good presentation.
@itninja7771 Жыл бұрын
too small on screen. could barely see the font. Zoom in please.
@Call_me_T.H. Жыл бұрын
You are a gentleman and a scholar brother!
@Jacob46683 Жыл бұрын
It keeps saying error
@EmanuelJordan-bg3br7 ай бұрын
Did you figure it out
@JHendo2477 ай бұрын
@@EmanuelJordan-bg3br I submitted what I saw and got a 3/10 - there are two other questions that I guess supposed to be answered here as well but its not accepting it
@ladym7852 Жыл бұрын
I still don't get it. 😞
@EmilyHazelwood-u7i Жыл бұрын
Thank you for your help with this course!
@albertoguadiana1008 Жыл бұрын
is this reall the whole course 🙌👌🙏
@mattparker5663 Жыл бұрын
Not all of the sections are covered...but the core concepts are!
@KarinaGarcia-tk5re Жыл бұрын
Thank you for your videos! my teacher does not make any videos and you do! thank you! I hate her! but I love you!
@CharliesOpus Жыл бұрын
🙏
@mattparker5663 Жыл бұрын
One thing that I forgot in my implementation was freeing the pointer after it is inserted into the set!
@KarinaGarcia-tk5re Жыл бұрын
Thank you professor! My "instructor" for CS 210 does not give any lectures and she is just very irresponsable, I cant believe that you give the time to your students and my instructor does not ! THANK YOU!!!!!!
@xcrazysunshine Жыл бұрын
THANK YOU! I'm in this class but you aren't my instructor and this has been extremely helpful.
@5am53pi0l Жыл бұрын
Thank you for taking the time to do these. It means the absolute world to have the support you are providing.
@BryanWiggers Жыл бұрын
SO glad i read these comments...
@CharliesOpus Жыл бұрын
in your example - doesn't doing 'input_value = number_dollars * 100' directly undo the line above it ('number_dollars = input_value // 100')? if you input '145', the first line gives you '1.45', then the second line would again give you back '145'? Am I misunderstanding what it is supposed to be doing? (probably)
@mattparker5663 Жыл бұрын
Yes...that is not correct...line 12 should be something like input_value = input_value - number_dollars * 100
@CharliesOpus Жыл бұрын
@@mattparker5663 Very helpful! Thank you!!
@Simplyfeliciaxo Жыл бұрын
I got stuck on the 3rd lab but this helped so much!! thank you
@CharliesOpus Жыл бұрын
Thank you!! :D
@chriscole2666 Жыл бұрын
Press Windows key + arrow keys to conveniently tile windows.
@jakecompton0406 Жыл бұрын
Thank you for this, I’m just now starting IT 140 and this helps a lot!
@mattparker5663 Жыл бұрын
Unfortunately I only taught this course one term...and didn't get all of the recordings created :(
@jakecompton0406 Жыл бұрын
@@mattparker5663 it’s all good! At least I got some videos to help me out! Thank you!
@nick-ish2 жыл бұрын
nice
@patsplat2 жыл бұрын
This is great! Please do Python. My college class is using ZYbooks and sometimes the way the explain and ask things can be confusing.
@DWAINEMonster2 жыл бұрын
Thank you for your dedication to teaching the material. Its not something you get with every professor!