blob: 16785bd79ac498ca633635dbb8ab9894d26e6f7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*
27 Feb 2019
Matthew Strapp
5449340
EE1301
Spring 2019
Homework 3B
Character Detection
*/
#include <iostream>
#include <stdlib.h>
#include <cmath>
#include <iomanip>
int charTest (char character);
int main () {
using namespace std;
int test;
char character;
bool isAlphaNumeric=true;
while (isAlphaNumeric) {
cout << "Enter a single digit or an alphabetic character: ";
cin >> character;
cout << "You entered " << character << ", ";
test = charTest(character);
if (test==0) {
isAlphaNumeric=false;
cout << "which is not a letter or a number.";
}
if (test==1) {
cout << "which is a number.";
}
if (test==2) {
cout << "which is a lower case letter.";
}
if (test==3) {
cout << "which is an upper case letter.";
}
cout << endl;
}
}
// Function: charTest
// ---------------------------
// Tests to see what kind of character was inputted
// input: character from prompt in main
// returns: 1 if number, 2 if lower case, 3 if upper case, 0 if not any of the previous
int charTest (char character) {
if (character >= '0' && character <= '9') {
return 1;
} else {
if (character>='a' && character<='z') {
return 2;
} else {
if (character>= 'A' && character<='Z') {
return 3;
} else {
return 0;
}
}
}
}
|