ramylan00
ramylan00
26-12-2020
Computers and Technology
contestada
help me please .
and thank you ..
Respuesta :
kalabeasfaw99
kalabeasfaw99
26-12-2020
Answer:
#include <iostream>
using namespace std;
int main()
{
char c;
int isLowercaseVowel, isUppercaseVowel;
cout << "Enter an alphabet: ";
cin >> c;
// evaluates to 1 (true) if c is a lowercase vowel
isLowercaseVowel = (c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u');
// evaluates to 1 (true) if c is an uppercase vowel
isUppercaseVowel = (c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U');
// evaluates to 1 (true) if either isLowercaseVowel or isUppercaseVowel is true
if (isLowercaseVowel || isUppercaseVowel)
cout << c << " is a vowel.";
else
cout << c << " is a consonant.";
return 0;
}
Explanation:
Answer Link
VER TODAS LAS RESPUESTAS ( 16+ )
Otras preguntas
Which statement is most true? peer pressure isn't a problem for teenagers. peer pressure can been good or bad. peer pressure is usually positive peer pressure i
I really need help?!?!? 18n+13-5n
Explain how MLK Jr.’s words empower you to take action in your community to help a group that has been oppressed or is not being treated equally. Use one quote
The regular price of an item is $65. The item is on sale with a discount of $8. What is the discount rate? A. 0.123% B. 1.23% C. 8% D. 12.3%
Nosotros no ________ estudiar esta noche.
Identify the proper noun that completes the following sentence. On our vacation we are going to the ___________. A. mountains B. ocean C. Grand Canyo
Proportional relationship or not... Y=25x. a=5x+5. m=105.25n If yes identify unit rate
Answer number 10 please and thanks it's multiple choice
What is a model for 5 x 3?
Triangle LMN has L at (1, -1) and M at (2, 3). Triangle L'M'N' has L' at (-1, -1), M' is at (3, -2), and N' is at (-3, 0). What are the coordinates of vertex N?