From 89ec8373bb3b9a18c7ab8dde76c66dc17fc04cbf Mon Sep 17 00:00:00 2001 From: JacobAKnox <91796123+JacobAKnox@users.noreply.github.com> Date: Sat, 30 Oct 2021 10:17:32 -0700 Subject: 10b complete --- 10b/10.8.7/funcs.cpp | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 10b/10.8.7/funcs.cpp (limited to '10b/10.8.7/funcs.cpp') diff --git a/10b/10.8.7/funcs.cpp b/10b/10.8.7/funcs.cpp new file mode 100644 index 0000000..80a7795 --- /dev/null +++ b/10b/10.8.7/funcs.cpp @@ -0,0 +1,30 @@ + +#include "header.h" +#include + +using namespace std; + +void GetInput(char s1[], char s2[], int& amt) +{ + cout << "Input the first stirng: "; + cin >> s1; + + cout << "Input the second string: "; + cin >> s2; + + cout << "How many charcters to compare: "; + cin >> amt; +} + +bool Compare(char s1[], char s2[], int n) +{ + for (int i = 0; i < n; i++) + { + if (!(s1[i] == s2[i])) + { + return false; + } + } + + return true; +} -- cgit v1.2.3