Back to Arduino Step By Step Course
Please select other codes for this lecture from the links below.
In this lecture we learn about Conditional Statement such as if, else if and else with multiple examples.
/*
* S01-08
* Contional Statement 1
Please watch video instruction here https://youtu.be/Mky-04NH_CQ
This code is available at http://robojax.com/course1/?vid=lecture08
with over 100 lectures Free On YouTube Watch it here http://robojax.com/L/?id=338
Get the code for the course: http://robojax.com/L/?id=339
* Written by Ahmad Shamshiri for Robojax, robojax.com http:youTube.com/robojaxTV
* at 22:27 on Feb 07, 2019 in Ajax, Ontario, Canada
*/
int mark = 56;
char grade;
void setup() {
if(mark>=90 && mark<=100){
grade ='A';
}else if(mark>=80 && mark<=89){
grade ='B';
}else if(mark>=70 && mark<=79){
grade ='C';
}else if(mark>=60 && mark<=69){
grade ='D';
}else{
grade ='F';
}
Serial.begin(9600);//initialize the serial monitor
Serial.print("Grade is:");
Serial.println(grade);
}
void loop() {
//Robojax Step By Step Arduino Course http://robojax.com/L/?id=338
}
The least I expect from you is to thumb up the video and subscribe to my channel. I appriciate that. .I have spent months making these lectures and writing code. You don't lose anything by subscribging to my channel. Your subscription is stamp of approval to my videos and more people can find them and in it turn it helps me. Thank you
If you found this tutorial helpful, please support me so I can continue creating content like this. support me via PayPal
**** AFFILIATE PROGRAM **** We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.