User Tools

Site Tools


user:apardini:portfolio:cprogproject1

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:apardini:portfolio:cprogproject1 [2015/01/23 23:58] – [Procedure] apardiniuser:apardini:portfolio:cprogproject1 [2015/01/29 02:35] (current) – [Procedure] apardini
Line 11: Line 11:
 In order to successfully accomplish/perform this project, the listed resources/experiences need to be consulted/achieved: In order to successfully accomplish/perform this project, the listed resources/experiences need to be consulted/achieved:
  
-  * resource1 +  * understanding of loops 
-  * resource2 +  * The Switch, break case 
-  * resource3 +  * Array types 
-  * experience1 +  * good loop structure 
-  * experience2 + 
-  * etc.+
  
 =====Background===== =====Background=====
 +
 +This programs consists on an array and responds to various loop options.
 +
 +Array - Holds multiple elements as a list of the same data type.
 +
 State the idea or purpose of the project. What are you attempting to pursue? State the idea or purpose of the project. What are you attempting to pursue?
  
Line 38: Line 42:
  
 =====Procedure===== =====Procedure=====
-The actual steps taken to accomplish the project. Include images, code snippets, command-line excerpts; whatever is useful for intuitively communicating important information for accomplishing the project. 
  
 +At first my capabilities were limited when approaching this project. After some time revising multiple books and examining a few online sources i was confident to begin a pseudo code approach.  
 +   
 This program uses multiple loops which meant revision on the, While...Do, If....Else statements was needed. This program uses multiple loops which meant revision on the, While...Do, If....Else statements was needed.
  
 A problem that i faced forming the loop structure for the program was in relation to the Switch, Case statment. It took some time nesting loops properly without running into multiple syntax errors.  A problem that i faced forming the loop structure for the program was in relation to the Switch, Case statment. It took some time nesting loops properly without running into multiple syntax errors. 
 +
 +A problem i faced producing the case 3 & case 4 options of the menu was not having the right data for my 2nd nested loop. Example below.
 +
 +for (c = 19; c >= temp; c-- )      This loop would not run and took me along time to figure out the problem
 +{                                  eventually adding a greater then or equal to sorted out my problem i think.
 + 
 +               array[c] = array[c - 1];
 +}
 +            
 +
 =====Code===== =====Code=====
 Upon completion of the project, if there is an applicable collection of created code, place a copy of your finished code within <nowiki><code> </code></nowiki> blocks here. Upon completion of the project, if there is an applicable collection of created code, place a copy of your finished code within <nowiki><code> </code></nowiki> blocks here.
Line 50: Line 65:
  * hello.c - A sample "Hello, World!" program  * hello.c - A sample "Hello, World!" program
    
- * written by NAME for COURSE on DATE+ * written by Anthony Pardini for Data Structures on 01/28/15
  *  *
- * compile with: +
-   gcc -o hello hello.c +
- * +
- * execute with: +
-   ./hello+
  */  */
  
 #include <stdio.h> #include <stdio.h>
 +#include <stdlib.h>
  
 int main() int main()
 { {
-    printf("HelloWorld!\n");    // Output message to STDOUT +int array[20]; 
-    return(0);+int temp, temp2, stdOut,choice,position,value,c; 
 +int flag = 1; 
 + 
 +for ( c = 0 ; c < 20 ; c++ ) 
 +
 +    array[c]=-1; 
 +
 + 
 +while(flag == 1) 
 +
 + 
 + 
 + 
 + printf("What would You like to do?\n"); 
 + 
 + printf("1. Build List\n"); 
 + 
 + printf("2. display list\n"); 
 + 
 + printf("3. insert into list\n"); 
 + 
 + printf("4. append into list\n"); 
 + 
 + printf("5. obtain from list\n"); 
 + 
 + printf("6. clear list\n"); 
 + 
 + printf("7. quit\n"); 
 + 
 +printf("Enter your choice\n"); 
 +scanf("%d"&choice); 
 +switch (choice) 
 +            { 
 +case (1):   printf("Enter elements\n"); 
 +            for ( c = 0 ; c < 20 ; c++ ) 
 +            { 
 +                printf("Enter number to add: "); 
 +                scanf("%d", &array[c]); 
 +                if (array[c] == -1) 
 +                { 
 +                    break; 
 +                } 
 +            } 
 +            break; 
 + 
 +case (2): 
 +            printf("Array elements entered by you are:\n"); 
 +            for ( c = ; c < 20 ; c++ ) 
 +            { 
 +                printf("array[%d] = %d\n", c, array[c]); 
 +                if (array[c] == -1) 
 +                { 
 +                    break; 
 +                } 
 +            } 
 + 
 +            break; 
 + 
 +case (3):   for ( c = 0 ; c < 20 ; c++ ) 
 +            { 
 +                printf("array[%d] = %d\n", c, array[c]); 
 +                if (array[c] == -1) 
 +                { 
 +                    break; 
 +                } 
 +            } 
 +            printf("identify the element you wish to insert: "); 
 +            scanf("%d",&temp); 
 +            printf("What value do you wish to insert: "); 
 +            scanf("%d",&temp2); 
 + 
 +            for (c = 19; c >= temp; c-- ) 
 +            { 
 + 
 +               array[c] = array[c - 1]; 
 +            } 
 + 
 +            array[temp] = temp2; 
 + 
 + 
 +            break; 
 + 
 + 
 +case (4):   for ( c = 0 ; c < 20 ; c++ ) 
 +            { 
 +                printf("array[%d] = %d\n", c, array[c]); 
 +                if (array[c] == -1) 
 +                { 
 +                    break; 
 +                } 
 +            } 
 +            printf("identify the element you wish to insert: "); 
 +            scanf("%d",&temp); 
 +            printf("What value do you wish to insert: "); 
 +            scanf("%d",&temp2); 
 + 
 +            for (c = 19; c >= temp+1; c-- ) 
 +            { 
 +                printf("test"); 
 +               array[c] = array[c - 1]; 
 +            } 
 + 
 +            array[temp+1] = temp2; 
 + 
 + 
 +            break; 
 + 
 + 
 +case (5): 
 +            for ( c = 0 ; c < 20 ; c++ ) 
 +            { 
 +                printf("array[%d] = %d\n", c, array[c]); 
 +                if (array[c] == -1) 
 +                { 
 +                    break; 
 +                } 
 +            } 
 +            printf("identify the element you wish to obtain: "); 
 +            scanf("%d",&temp); 
 + 
 +            stdOut=array[temp]; 
 + 
 +            for (c = temp; c < 20; c++ ) 
 +            { 
 + 
 +               array[c] = array[c + 1]; 
 +               if (array[c] == -1) 
 +                { 
 +                    break; 
 +                } 
 +            } 
 + 
 +            printf("\n\nThe number %d was removed from the list and is stored elsewhere\n\n",stdOut); 
 + 
 + 
 + 
 + 
 +            break; 
 + 
 +case (6):   for ( c = 0 ; c < 20 ; c++ ) 
 +            { 
 +               array[c]=-1; 
 +            } 
 + 
 +            break; 
 + 
 +case (7): 
 +            flag = 0; 
 +            break; 
 + 
 + 
 + 
 +            } 
 +
 + 
 +return 0;
 } }
 </code> </code>
Line 83: Line 250:
 In performing this project, the following resources were referenced: In performing this project, the following resources were referenced:
  
-  * URL1 +  * http://cboard.cprogramming.com/ 
-  * URL2 +  * http://www.cplusplus.com/
-  * URL3 (provides useful information on topic) +
-  * URL4+
  
 Generally, state where you got informative and useful information to help you accomplish this project when you originally worked on it (from Google, other wiki documents on the Lab46 wiki, etc.) Generally, state where you got informative and useful information to help you accomplish this project when you originally worked on it (from Google, other wiki documents on the Lab46 wiki, etc.)
user/apardini/portfolio/cprogproject1.1422057527.txt.gz · Last modified: 2015/01/23 23:58 by apardini