aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk3/hw3_directory/strap012_HW3B.cpp
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2020-02-09 08:46:52 -0600
committerRossTheRoss <msattr@gmail.com>2020-02-09 08:46:52 -0600
commitbd1d350c376b45e334697851e29b2f79fee0c956 (patch)
treeeb242032a64442caef7a35434400eb0818911e9a /ee1301/wk3/hw3_directory/strap012_HW3B.cpp
parentDo micro prelab (diff)
parentRename file (diff)
downloadhomework-bd1d350c376b45e334697851e29b2f79fee0c956.tar
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.gz
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.bz2
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.lz
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.xz
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.zst
homework-bd1d350c376b45e334697851e29b2f79fee0c956.zip
Merge branch 'master' of github.com:RosstheRoss/TestingFun
Diffstat (limited to 'ee1301/wk3/hw3_directory/strap012_HW3B.cpp')
-rw-r--r--ee1301/wk3/hw3_directory/strap012_HW3B.cpp65
1 files changed, 0 insertions, 65 deletions
diff --git a/ee1301/wk3/hw3_directory/strap012_HW3B.cpp b/ee1301/wk3/hw3_directory/strap012_HW3B.cpp
deleted file mode 100644
index 16785bd..0000000
--- a/ee1301/wk3/hw3_directory/strap012_HW3B.cpp
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
-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;
- }
- }
- }
-} \ No newline at end of file