If_Else_Example
import "dart:io" ; class Student { var sname , sroll , sage ; void getData (String s , int r , int a) { sname = s ; sroll = r ; sage = a ; print( "Below are your subjects : \n Maths \n English \n Hindi \n " ) ; print( "How many marks you have got in Maths ? : " ) ; var mathsMark = stdin.readLineSync() ; if (int. parse (mathsMark!) <= 33 ) { print( "Sorry, You are Fail in Maths Subject" ) ; } else if (int. parse (mathsMark) > 33 && int. parse (mathsMark) < 50 ) { print( "Good, Your Maths mark is between 33 to 50" ) ; } else if (int. parse (mathsMark) > 50 && int. parse (mathsMark) < 70 ) { print( "Very Good, Your Maths mark is between 50 to 70" ) ; } else if (int. parse (mathsMark) > 70 ) { print( "Excellent, You have distinctive in Maths Subject, Congratulations!" ) ; print( "How many times have you atte...