User Tools

Site Tools


user:acrowle1:portfolio:cprogproject3

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
user:acrowle1:portfolio:cprogproject3 [2014/03/02 21:33] – [Code] acrowle1user:acrowle1:portfolio:cprogproject3 [2014/03/09 14:53] (current) – [Project: dayofweek] acrowle1
Line 1: Line 1:
-======Project: squares======+======Project: Squares======
  
 A project for CSCS1320S14 by Alana Whittier during the Spring Semester 2014. A project for CSCS1320S14 by Alana Whittier during the Spring Semester 2014.
Line 50: Line 50:
 My first attempt at writing the program was using the modulus operator, %, although abandoned that effort quickly as it was not clear what to do with the factor in order to implement the mental math technique. I then decided to implement the computation of the square in what I deemed more simplistic of an approach and then used a series of if, else if statements to output **//only//** the values I wanted the user to input and obtain (two-digit integers ending in 5), and  finally an else statement in which "Error: Invalid Entry" is displayed for all values greater than 95 and for all values that do not end in 5.  My first attempt at writing the program was using the modulus operator, %, although abandoned that effort quickly as it was not clear what to do with the factor in order to implement the mental math technique. I then decided to implement the computation of the square in what I deemed more simplistic of an approach and then used a series of if, else if statements to output **//only//** the values I wanted the user to input and obtain (two-digit integers ending in 5), and  finally an else statement in which "Error: Invalid Entry" is displayed for all values greater than 95 and for all values that do not end in 5. 
  
-Example 1: +Example 1 (My first submitted program)
  
  
Line 94: Line 94:
 After more consideration, I decided to try again writing the program using the modulus operator, which I called R and the factor which I declared a variable. This code is substantially more efficient as it does not require so many lines of code to obtain the squared values. However, I am uncertain how to completely limit the computation and output, since this approach also works for 3 and 4 digit integers ending in five.  After more consideration, I decided to try again writing the program using the modulus operator, which I called R and the factor which I declared a variable. This code is substantially more efficient as it does not require so many lines of code to obtain the squared values. However, I am uncertain how to completely limit the computation and output, since this approach also works for 3 and 4 digit integers ending in five. 
  
-See the code below.+Example 2 (The second program using modulus operator and factor): 
  
  
Line 181: Line 181:
  
 <cli> <cli>
-lab46:~/src/cscs1320$ nano datatypesM-D.c +lab46:~/src/cscs1320$ nano squares.c 
-lab46:~/src/cscs1320$ gcc -o datatypesM-D datatypesM-D.c +lab46:~/src/cscs1320$ gcc -o squares squares.c 
-lab46:~/src/cscs1320$ ./datatypesM-D +lab46:~/src/cscs1320$ ./squares 
-TYPE: unsigned char, bytes: 1, low: 0, high255, qty: 256 +type up to a two digit integer ending in 5; 
-TYPE  signed char, bytes: 1, low: -128, high: 127, qty: 256 +25 
-TYPE: unsigned short int, bytes: 2, low0, high: 65535, qty: 0 +25625 
-TYPE:   signed short int, bytes2, low: -32768, high: 32767, qty: 0 +lab46:~/src/cscs1320$ ./squares 
-TYPE: unsigned int, bytes4, low: 0, high: 4294967295, qty: 0 +type up to a two digit integer ending in 5; 
-TYPE  signed int, bytes: 4, low: -2147483648, high: 2147483647, qty: 0 +55 
-TYPEunsigned long int, bytes: 8, low: 0, high: 18446744073709551615, qty: 0 +553025 
-TYPE  signed long int, bytes: 8, low: -9223372036854775808, high: 9223372036854775807, qty: 0 +lab46:~/src/cscs1320$ ./squares 
-TYPE: unsigned long long int, bytes8, low: 0, high: 18446744073709551615, qty: 0 +type up to a two digit integer ending in 5; 
-TYPE:   signed long long int, bytes8, low: -9223372036854775808, high: 9223372036854775807, qty: 0+60 
 +ErrorInvalid Entry 
 +lab46:~/src/cscs1320$ ./squares 
 +type up to a two digit integer ending in 5; 
 +95 
 +959025 
 +lab46:~/src/cscs1320$ ./squares 
 +type up to a two digit integer ending in 5; 
 +100 
 +ErrorInvalid Entry 
 +lab46:~/src/cscs1320$ 
 </cli> </cli>
  
 =====Reflection===== =====Reflection=====
-Considering the difficulties I encountered during the process of writing this programit was as rewarding as it was frustrating. It forced me to delve deeper into more of the computer fundamentals to successfully execute the program. Since I have never taken digital logic type course and this was my first programming course, binary was a foreign concept to me. Furthermore, converting from decimal to binary or hex was even more foreign. have learned everything from two's and one's complement, to format specifiers, to manipulating code in order to obtain the negative values in the range for the signed data types. In order to do this, I changed from bitwise AND to bitwise OR, as well as type cast to the unsigned counterpart of the data typeThis was a surpriseas happened upon changing from bitwise AND to OR, only in desperation to achieve what I knew the low values in the range were supposed to beI kept second guessing MY logic, as well as the computer logic used in completing the assignment+In writing this program, I encountered some initial difficulty with the use of ifelse if, and else statements. I was not understanding why the program was not doing as I expectedAfter series of trial and error attempts, it was observed that my code would work if used the correct syntax. First mistake: the semi-colon following the ifelse if, else conditions that tried to impose. Removing them helped significantly. 
 +Second mistake: The way I used the curly bracesEssentially, I was embedding several else if statements within the initial ifBy correcting this my code worked flawlessly.
  
-**Observations**+Since my initial attempt at writing this program included the modulus operator, which had been quickly abandoned, I decided to revisit that since I now had a working program written in a manner I felt was more simplistic. What I realized that I was missing from my initial program was the factor (the number of times that 10 went into the integer). For example, if I declared the factor to be i/10 and R= i%10, then for an integer value of 25, R=5 and the factor=2, since 10 can go into 25 twice, with a remainder of 5. With this program written this way, the same mental math technique works for 3 and 4 digit integers ending in 5 as well, to compute the squares. This code is shown above in Example 2 of the Procedure section.    
  
-The long and long long int (signed and unsigned) appear the same. This is because they are both 64 bit and that is the most the compiler can handle. 
  
-printf() and fprintf() basically do the same thing. The difference being that printf can only print on the monitor, has the default stream of STDOUT, while fprintf can print to a user defined stream (or file). In our project, fprintf uses the STDOUT to the screen AS if it were a file.  
  
-STDOUT is by default printed to the screen unless user specified.  
  
-%s is the format specifier used to print a string of characters, %hhu is the format specifier for half half unsigned char, % hu is the format specifier for unsigned short int.  
- 
-The difference between %u and %d are that %u denotes an unsigned int type, while %d denotes a signed int type.  
- 
-Considering the 13 in %13 in the first stanza for unsigned char in the program, this just specifies the number of characters in the string, including spaces to be printed for "TYPE" 
- 
-If a sign is left unspecified, it is assumed unsigned by default. 
- 
-The & and | operators are the bitwise logic operators, which in our case took the hex representation of our data types to help us to obtain the appropriate high/low values within our ranges.  
- 
-I experienced some difficulty in initial attempts to obtain the low values for the signed data types. I later learned that not only did I need to change the expression for the "low" values to bitwise OR, but I also needed to type cast in the final line of the signed data type stanza. 
- 
-Based on my program's output, the total bits allocated per the following data types are as follows: 
-   * signed char = 8 bits 
-   * unsigned short int = 16 bits 
-   * unsigned int = 32 bits 
-   * signed int = 32 bits 
-   * signed long long int = 64 bits 
- 
-However, due to the decrementing and incrementing per data type, only the unsigned char actually stored ANY memory at all and stored a total of 16 bits! 
  
  
Line 238: Line 227:
 In performing this project, the following resources were referenced: In performing this project, the following resources were referenced:
  
-  * http://en.cppreference.com/w/cpp/language/types1 +  * http://wildaboutmath.com/2007/11/11/impress-your-friends-with-mental-math-tricks/comment-page-6
-  * http://www.youtube.com/watch?v=SXAr35BiqK8 +  * http://saurabhg.hubpages.com/hub/Vedic-Mathematics---Quick-multiplication-techniques---Part-1 
-  * http://www.binaryhexconverter.com/decimal-to-hex-converter +  * Kernighan, Ritchie //The C Programming Language// Second Edition, AT&T Bell Laboratories, 1988. Print. 
-  * http://en.wikipedia.org/wiki/Signed_number_representations +  * email consultations and guidance from Matt Haas
user/acrowle1/portfolio/cprogproject3.1393796028.txt.gz · Last modified: 2014/03/02 21:33 by acrowle1