C++ Program to Find Grade of Student using Switch Case
OUTPUT:– Enter score(0-100): 92 Grade = A Enter score(0-100): 50 Grade = E Enter score(0-100): 25 Grade = F Enter score(0-100): 142 Invalid Score Enter score(0-100): -20 Invalid Score
C++ Program To Check Date Validation (Valid Or Not) Using If/Else Statements
OUTPUT:– Enter the date (Day Month Year) : 12 02 1999 It is Valid
C++ Program To Count Letters, Space, Digits, And Others Using If/Else Statements
OUTPUT:– Count the letters, spaces, numbers and other characters: ------------------------------------------------------------- Enter a string: This is w3resource.com The number of characters in the string is: 22 The number of alphabets are:…
C++ Program To Find The LCM Of Two Number Using If/Else Statement
OUTPUT:– The LCM of 7 and 5 is 35
C++ Program To Check Year Is Leap Year Or Not Using If/Else Statements
OUTPUT:– ----Enter the year---- 1997 1997 is not the leap year.
C++ program to convert lowercase character to uppercase and vice versa
OUTPUT:– First run: Please input a valid character (Alphabet): H converted character is: h Second run: Please input a valid character (Alphabet): h converted character is: H Third run: Please…