10: Conditional Statements In C# | If, Else if, Else | C# Tutorial For Beginners | C Sharp Tutorial

  Рет қаралды 101,836

Dani Krossing

Dani Krossing

Күн бұрын

Пікірлер: 56
@yulana990
@yulana990 5 жыл бұрын
How is it that your explanations are so easy yet every school assignment I get is SO awfully explained that I have to look up 5 different websites just to realise how easy it is. Even now my assignment doesn't fully make sense but thanks to you I managed to understand atleast 1 part :)
@BionicEdit
@BionicEdit 5 жыл бұрын
kurochi chan I felt this bro
@bubblegum2445
@bubblegum2445 4 жыл бұрын
ikr?? lol
@cicbeats8897
@cicbeats8897 4 жыл бұрын
I studied programing for 4 years in university. Every week we had 4 hours of C# explaining things that my boy explained for 10 mins.
@420avery69
@420avery69 4 жыл бұрын
SAME!!!!!!!!!! I hate that I pay thousands of dollars for college courses and instructors that barely teach me anything, when the only reason I'm passing those classes is because of stack overflow and youtube.. and the info on those websites is available for free
@lysergichedgehog7769
@lysergichedgehog7769 2 жыл бұрын
I'm in a Bootcamp right now and completely feel this. I have to find different source material in which it provides a more in-depth look into comprehending this subject matter.
@Dani_Krossing
@Dani_Krossing 5 жыл бұрын
Hi everyone! Sorry about the echoing audio quality in this one. The next video will be a bit echo'ee too, but I will try and get it fixed for future episodes :)
@browntulipsmedia3419
@browntulipsmedia3419 5 жыл бұрын
Audio wasn't that bad.
@bigdanslivestreams4060
@bigdanslivestreams4060 3 жыл бұрын
@@browntulipsmedia3419 Yeah, I honestly couldn't tell.
@fredoh2768
@fredoh2768 2 жыл бұрын
2 Months into coding and this are the best teaching videos that I have ever watch. Thank You!
@RTXJoe
@RTXJoe Ай бұрын
It is the easiest method to learn, thanks mate
@mika.tolentino143
@mika.tolentino143 2 жыл бұрын
finally, I found the right video and the right channel. Thank you😊
@elo9639
@elo9639 4 жыл бұрын
Maigi pa dine madali dali, thank you!
@bipanpreetkaur2184
@bipanpreetkaur2184 4 жыл бұрын
I absolutely love the way u explain everything so easily. This is the best tutorial for beginners. Thank you!
@llama-berry
@llama-berry 4 жыл бұрын
One of the best tutorials for c#, ive learned ALOT!
@harryflashman4542
@harryflashman4542 4 жыл бұрын
quarantined student here. Close to giving up but these are helping a lot. Makes me wonder why I am enrolled in a degree course when this is much more efficient use of study time.
@twicon87
@twicon87 2 жыл бұрын
omfg im reading this course in my country and i was stuck the whole day, your explanation was crystal clear to me.
@borjhilas180
@borjhilas180 Жыл бұрын
your tutorial is direct to the point. Wazzz up dude im from philippines ^_^
@franchise8377
@franchise8377 3 жыл бұрын
The main character in explanations
@hshsjsjsj506
@hshsjsjsj506 4 жыл бұрын
You and The New Boston is really great teacher i learn programming because of you two. Thanks.
@elizajanortizo8447
@elizajanortizo8447 2 жыл бұрын
i have a practical exam tom about if statement and this helped me understand everything
@kwabenalloyd
@kwabenalloyd 2 жыл бұрын
Your explanations always on point , easy to understand
@eboinspyra
@eboinspyra 2 жыл бұрын
QUESTION 1 a) To improve proceeds from ticketing at the various stadia, authorities decided to automate the way tickets were sold. As a programmer, consider the automation process as a program development process and explain the phases you would consider when you develop your system. b) Assuming you are to write an algorithm to depict the various components of the system. Determine the various section of the algorithms that will help any programmer without any knowledge of the system to correct build the system. c) Visualization is usually the best way to explain how a system works. Draw a well-labeled diagram to show the various parts of your system.
@aileencastruita1149
@aileencastruita1149 2 жыл бұрын
Thank you so much for this video! I couldn't find a video that explained if statements with Visual Studio then I found your page.
@newprogrammer1811
@newprogrammer1811 5 жыл бұрын
Thank you so much. one of the best if not the best c# tutorial.
@alextheblockchaindev
@alextheblockchaindev 5 жыл бұрын
Great video! Thank you!
@inspirationalquotes5840
@inspirationalquotes5840 5 жыл бұрын
you are more hansom, smarter and Understanding than my professor.
@R69Games
@R69Games 3 жыл бұрын
Awesome explained, Thank you ! :)
@eboinspyra
@eboinspyra 2 жыл бұрын
QUESTION 3 a) A particular part of a program is to be repeated 100 times. Determine how this could be efficiently done. b) Write a pseudo code for the question in “a” above. c) Implement your answer in “a” above, by writing a program to display “The Russian has invaded Ukraine” 100 times. Your display should be numbered from 1 - 100
@kiranshewale8264
@kiranshewale8264 3 жыл бұрын
Thank you for the easy and simple explanation :)
@codingwitheric6774
@codingwitheric6774 4 жыл бұрын
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreatVideo { class Program { static void Main(string[] args) { string message = "Great Video!"; Console.WriteLine(message); } }
@siyaluten5553
@siyaluten5553 2 жыл бұрын
Great content 👌👌really helpful
@dave77777777
@dave77777777 3 жыл бұрын
Thanks for the info!
@AlexDBall
@AlexDBall 5 жыл бұрын
Excellent, as always!
@simpsonelli
@simpsonelli 3 жыл бұрын
Great explanation, thank you.
@akshaygadhe636
@akshaygadhe636 3 жыл бұрын
I want to use two conditions in if loop using && is it possible?
@jackmatcrl8161
@jackmatcrl8161 4 жыл бұрын
Design an algorithm that will read a series of integers at the terminal. The first integer is special, as it indicates how many more integers will follow. The first integer must be between 3 and 10. Your algorithm is to calculate the sum and average of the integers, excluding the first integer, and display these values to the screen. The program must also display the minimum and the maximum number entered excluding the first integer. Write an algorithm in the form of Pseudocode and flowchart. Perform desk checking (include desk check table). Implement it in Python or C#. like if u know how to do the C++ code for this hit me up pleaase
@erichaelvina5624
@erichaelvina5624 5 жыл бұрын
Do you have c# program that deals with computation, variable, and if ,else if statement..
@sorryrashmi9885
@sorryrashmi9885 4 жыл бұрын
u are awesome....!!!
@kubulus7868
@kubulus7868 5 жыл бұрын
Is there any other way to check data (other than ifs)?
@javiercorona10
@javiercorona10 4 жыл бұрын
millions thanksss
@TakiTarik
@TakiTarik 4 жыл бұрын
Hello i hope you can help me i cant find the answer anywhere tho, So as following I have an assignment, and i have 4 labels ,2 buttons and a listbox when i add items to my listbox with a button for example a sentence, then i have my 2 other buttons btnAccept and btnDecline When i click btnAccept or decline the sentence in my listbox should be remove gone but idk how to do this, and second of all is when i i click btnAccept my value in 1 of the 4 labels, labelAccept should change to labelAccept 1 if i click btnAccept again once i've added a new sentence to my listbox and i click on btnaccept then the labelAccept 1 changes to labelAccept 2 the value has to change each time if i accept more or decline more vice versa for other labels any idea ? maybe u can help me out i would be so gratefull .
@mkjigoro4200
@mkjigoro4200 5 жыл бұрын
Good one...
@Vallurea
@Vallurea 5 жыл бұрын
thanks alot God bless you
@eboinspyra
@eboinspyra 2 жыл бұрын
Kindly help me solve this; QUESTION 5 a) Conditional operators are some of the key building blocks of programming. Convert the conditional operation below to an if-else statement. Y = (A
@togglinho
@togglinho 4 жыл бұрын
how do i make so the if statement is about 1+ words instead of numbers?
@zaynmehrali9096
@zaynmehrali9096 4 жыл бұрын
Maybe you've found out the answer, however you would simply change the data type to a string. e.g. string a = "Hello".
@memolaw405
@memolaw405 3 жыл бұрын
Could anyone help me guys for me when I type if, the if becomes red everytime and doesnt work.
@lokomoko008
@lokomoko008 Жыл бұрын
Ok but how do i assign this to a specific label?
@nielsvanherwijnen
@nielsvanherwijnen 4 жыл бұрын
holy shit great vid
@LuzuVlogsGamer
@LuzuVlogsGamer 2 жыл бұрын
Should I be worried that its uploaded on April fools day?
@sujitsingh4893
@sujitsingh4893 5 жыл бұрын
first
@tda8184
@tda8184 4 жыл бұрын
C# keeps giving me shit about else statements and how they cant run instructions even tho I'm doing it the same way you and 2 others did plz send me help lmao edit 5mins l8r: nvm I figured it out
@PinkMappy
@PinkMappy 4 жыл бұрын
I think I have the same problem, how did you fix it?
why are switch statements so HECKIN fast?
11:03
Low Level
Рет қаралды 432 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 18 МЛН
C if statements ✔️
4:06
Bro Code
Рет қаралды 59 М.
If else statement - C# programming tutorial for beginners
21:06
Java if statements 🚧【6 minutes】
6:12
Bro Code
Рет қаралды 175 М.
how Google writes gorgeous C++
7:40
Low Level
Рет қаралды 968 М.
C# if statements 🤔
6:27
Bro Code
Рет қаралды 49 М.
Switch case statement - C# programming tutorial for beginners
22:18
How to Program in C# - Loops (E04)
18:28
Brackeys
Рет қаралды 504 М.
The 'if-else' Statement in C++
10:19
Neso Academy
Рет қаралды 89 М.