diff --git a/Data-Storage/ifstream-test-for-file-open-errors.cpp b/Data-Storage/ifstream-test-for-file-open-errors.cpp new file mode 100644 index 0000000..c5d5d3f --- /dev/null +++ b/Data-Storage/ifstream-test-for-file-open-errors.cpp @@ -0,0 +1,61 @@ +//********************************************* +// This program tests for file open errors. +// +// By: JESUS HILARIO HERNANDEZ +// Last modified: October 12, 2016 +//********************************************* +#include +#include +using namespace std; + +int main() +{ + ifstream inputFile; + int number; + + // Open the file. + inputFile.open("BadListOfNumbers.txt"); + + // If the file sucessfully opened... + if (inputFile) + { + // Read the numbers from the file and + // display them. + while (inputFile >> number) + { + cout << number << endl; + } + + // Close the file. + inputFile.close(); + } + // Trailing Else statment + else + { + // Display and error message. + cout << "Error opening the file.\n"; + } + +//********************************************* +// Another example +//********************************************* + + inputFile.open("ListOfNumbers.txt"); + if (inputFile.fail()) + { + cout << "Error opening file.\n"; + } + else + { + // Read the numbers from the file and + // display them. + while (inputFile >> number) + { + cout << number << endl; + } + + // Close the file. + inputFile.close(); + } + return 0; +} diff --git a/Data-Storage/ofstream-use-for-loop-to-write-data-to-a-file.cpp b/Data-Storage/ofstream-use-for-loop-to-write-data-to-a-file.cpp new file mode 100644 index 0000000..6dd18f4 --- /dev/null +++ b/Data-Storage/ofstream-use-for-loop-to-write-data-to-a-file.cpp @@ -0,0 +1,32 @@ +//************************************************** +// This program uses a for loop to write the numbers +// in increments of 2 within the range of 0 through +// 1000. +// +// By: JESUS HILARIO HERNANDEZ +// Last modified: October 14, 2016 +//************************************************** +#include +#include +using namespace std; + +int main() +{ + // Stream object + ofstream outputFile; + + // Open or create file to write to + outputFile.open("writenumbersto.txt"); + + for (int i = 0; i <= 1000; i += 2) + { + outputFile << i << endl; + } + // Display data write complete + cout << "Your written file has been written and " + << "complete." << endl; + + // Close file + outputFile.close(); + return 0; +} diff --git a/Data-Storage/writenumbersto.txt b/Data-Storage/writenumbersto.txt new file mode 100644 index 0000000..07e6a81 --- /dev/null +++ b/Data-Storage/writenumbersto.txt @@ -0,0 +1,501 @@ +0 +2 +4 +6 +8 +10 +12 +14 +16 +18 +20 +22 +24 +26 +28 +30 +32 +34 +36 +38 +40 +42 +44 +46 +48 +50 +52 +54 +56 +58 +60 +62 +64 +66 +68 +70 +72 +74 +76 +78 +80 +82 +84 +86 +88 +90 +92 +94 +96 +98 +100 +102 +104 +106 +108 +110 +112 +114 +116 +118 +120 +122 +124 +126 +128 +130 +132 +134 +136 +138 +140 +142 +144 +146 +148 +150 +152 +154 +156 +158 +160 +162 +164 +166 +168 +170 +172 +174 +176 +178 +180 +182 +184 +186 +188 +190 +192 +194 +196 +198 +200 +202 +204 +206 +208 +210 +212 +214 +216 +218 +220 +222 +224 +226 +228 +230 +232 +234 +236 +238 +240 +242 +244 +246 +248 +250 +252 +254 +256 +258 +260 +262 +264 +266 +268 +270 +272 +274 +276 +278 +280 +282 +284 +286 +288 +290 +292 +294 +296 +298 +300 +302 +304 +306 +308 +310 +312 +314 +316 +318 +320 +322 +324 +326 +328 +330 +332 +334 +336 +338 +340 +342 +344 +346 +348 +350 +352 +354 +356 +358 +360 +362 +364 +366 +368 +370 +372 +374 +376 +378 +380 +382 +384 +386 +388 +390 +392 +394 +396 +398 +400 +402 +404 +406 +408 +410 +412 +414 +416 +418 +420 +422 +424 +426 +428 +430 +432 +434 +436 +438 +440 +442 +444 +446 +448 +450 +452 +454 +456 +458 +460 +462 +464 +466 +468 +470 +472 +474 +476 +478 +480 +482 +484 +486 +488 +490 +492 +494 +496 +498 +500 +502 +504 +506 +508 +510 +512 +514 +516 +518 +520 +522 +524 +526 +528 +530 +532 +534 +536 +538 +540 +542 +544 +546 +548 +550 +552 +554 +556 +558 +560 +562 +564 +566 +568 +570 +572 +574 +576 +578 +580 +582 +584 +586 +588 +590 +592 +594 +596 +598 +600 +602 +604 +606 +608 +610 +612 +614 +616 +618 +620 +622 +624 +626 +628 +630 +632 +634 +636 +638 +640 +642 +644 +646 +648 +650 +652 +654 +656 +658 +660 +662 +664 +666 +668 +670 +672 +674 +676 +678 +680 +682 +684 +686 +688 +690 +692 +694 +696 +698 +700 +702 +704 +706 +708 +710 +712 +714 +716 +718 +720 +722 +724 +726 +728 +730 +732 +734 +736 +738 +740 +742 +744 +746 +748 +750 +752 +754 +756 +758 +760 +762 +764 +766 +768 +770 +772 +774 +776 +778 +780 +782 +784 +786 +788 +790 +792 +794 +796 +798 +800 +802 +804 +806 +808 +810 +812 +814 +816 +818 +820 +822 +824 +826 +828 +830 +832 +834 +836 +838 +840 +842 +844 +846 +848 +850 +852 +854 +856 +858 +860 +862 +864 +866 +868 +870 +872 +874 +876 +878 +880 +882 +884 +886 +888 +890 +892 +894 +896 +898 +900 +902 +904 +906 +908 +910 +912 +914 +916 +918 +920 +922 +924 +926 +928 +930 +932 +934 +936 +938 +940 +942 +944 +946 +948 +950 +952 +954 +956 +958 +960 +962 +964 +966 +968 +970 +972 +974 +976 +978 +980 +982 +984 +986 +988 +990 +992 +994 +996 +998 +1000 diff --git a/Loops/for-loop-pyramids.cpp b/Loops/for-loop-pyramids.cpp new file mode 100644 index 0000000..844c3be --- /dev/null +++ b/Loops/for-loop-pyramids.cpp @@ -0,0 +1,42 @@ +//************************************************** +// This program displays a right side up pyramid, +// as well as an upside down pyramid. +// +// By: JESUS HILARIO HERNANDEZ +// Last modified: October 14, 2016 +//************************************************** +#include +#include +#include +using namespace std; + +int main() +{ + + // Display Pattern A + cout << "Pattern A looks like this:" << endl; + + // Right side up pyramid for loop + for (int row = 1; row <= 13; ++row) + { + for (int col = 1; col <= row; ++col) + { + cout << "+"; + } + cout << endl; + } + + // Display Pattern B + cout << "\nHere is pattern B: " << endl; + + // Upside down pyramid for loop + for (int row = 13; row >= 1; --row) + { + for (int col = 1; col <= row; ++ col) + { + cout << "+"; + } + cout << endl; + } + return 0; +}