accept A character til usey enters# . display the total number of uppercase and lowercase character. also ensure the characters entered is a alphabet | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

accept A character til usey enters# . display the total number of uppercase and lowercase character. also ensure the characters entered is a alphabet

how to make it repeat until user enters # ??

17th Sep 2016, 8:24 PM
Anmol Kohli
Anmol Kohli - avatar
1 Réponse
+ 1
char c = ' '; while (c != '#') { cin >> c; ... }
17th Sep 2016, 8:29 PM
Zen
Zen - avatar