blob: 57c1541e810f81ed194e0cac8199af9445a7539a (
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
66
67
68
69
70
71
72
73
74
75
|
// Name: Arthur Spears
// Class: CST 126
// Date: 3/31/24
// Assignment: Homework 1
#include <iostream>
#include "helpers.hpp"
#include "menu.hpp"
#include <bitset>
#include "CST126_Structures.hpp"
using std::cout;
using std::endl;
uLLong MAX_LENGTH = 101;
struct Array
{
Array()
{
}
};
void CharArrays()
{
char* inputChar = PromptInputNewCharArray("Input a string: ", MAX_LENGTH);
cout << inputChar;
delete[] inputChar;
}
void Strings()
{
std::string myString = "Hello", mySecondString = " World";
std::string thirdString = myString + mySecondString;
cout << thirdString;
myString = PromptInputString("Input a new string: ");
cout << myString;
}
void WriteToFileExample()
{
char* outputToFile = PromptInputNewCharArray("Input to file:", MAX_LENGTH);
if (WriteToFile("new_text.txt", outputToFile))
{
cout << "Write to file successful";
}
}
void ReadFromFileExample()
{
if(ReadFromFileToConsole("new_text.txt"))
{
cout << "File read successfully" << endl;
}
}
int main(int argc, char* argv[]) {
int a = 5, b = 10;
bool condition = (a + b) < 15 && b > a;
// Print the number of command line arguments
cout << "Number of arguments: " << argc << endl;
// Loop through each argument
for (int i = 0; i < argc; ++i) {
cout << "Argument " << i << ": " << argv[i] << endl;
}
return 0;
}
|