Search:

Type: Posts; User: g8ortech14

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,505

    So in other words nothing productive to to add so...

    So in other words nothing productive to to add so bash the poster for not posting in the correct forum. Your absolutely right. I'll take my question and my patronage elsewhere.
  2. Replies
    3
    Views
    1,505

    Excel 2010 Function Error in VB

    Having problems with the code below on a 2010 Excel spreadsheet. The function flags me at first line and highlights Mid. I get a "compile error, cannot find project or library". I'm trying to set...
  3. Replies
    1
    Views
    1,592

    Star Wars: The Old Republic

    Probably will get flamed for posting this here, but if you feel its really inappropriate then you can trash the post.

    I am a programmer by day, but an MMORPG fanatic by night. I have formed a...
  4. Replies
    2
    Views
    1,210

    Perfect Harish that's exactly what I was looking...

    Perfect Harish that's exactly what I was looking for. I think it was the early hour and my brain wheels were not turning yet. Thank you so much.


    void inventoryReport(PRODUCT inventory[], int...
  5. Replies
    11
    Views
    1,432

    You are talking about strings. Characters and...

    You are talking about strings. Characters and words to strings. The problem with that is that you would be writing them to an Array meaning that the array would have to contain all of the same data...
  6. Replies
    9
    Views
    1,628

    Watch this video and then let us know if you...

    Watch this video and then let us know if you still are having issues.
    18 Characters and Strings
  7. Thread: Quick help

    by g8ortech14
    Replies
    5
    Views
    1,575

    This must be one of those students that signs up...

    This must be one of those students that signs up for the message board expecting everyone else to do his home work. HAHAHAHAHHAAHHA good luck with that.
  8. Replies
    2
    Views
    1,210

    if/else within a struct.

    Created a struct...


    typedef struct {
    char name[40];
    short int number;
    double wholesale;
    double retail;
    short int onHand;
    } PRODUCT;
  9. Hi all I figured it out late Saturday, and have...

    Hi all I figured it out late Saturday, and have been busy with family and school since then. Thank you so much for the input. Laserlight you helped me without giving me the answer. There were a...
  10. That would help :-)

    That would help :-)
  11. #include #include ...

    #include <stdio.h>
    #include <stdlib.h>

    main()
    {
    int minutes = 60;
    int total_seconds;
    double mins, seconds, hours;

    printf("Input Seconds: ");
  12. Thanks again

    Thanks again
  13. #include #include main() ...

    #include <stdio.h>
    #include <stdlib.h>
    main()
    {
    double total_seconds, hours, minutes, seconds;

    printf("Input Seconds: ");
    scanf("%lf", &total_seconds);

    printf ("Seconds Inputed =...
  14. That makes sense and will help with clarifying my...

    That makes sense and will help with clarifying my code. Thanks for the helpful input.
  15. I see the boundary error thanks.

    I see the boundary error thanks.
  16. So I went to paper here is what I have: I need...

    So I went to paper here is what I have:

    I need to declare variables:
    int total_secs
    float hrs, mins, secs

    input total_secs
    get total_secs

    if total_secs <= 60 then display secs = total_secs
  17. If I was given 122 seconds. I would take 122...

    If I was given 122 seconds. I would take 122 divided by 60 giving me 2 minutes with a remainder 2 would be output to 2 minutes 2 seconds. Declare the variables to be hrs, min, and sec.
  18. Logical! Logical! Why do you have to be so Logical?

    Ok so I am attempting to formulate my first program. The input is time in seconds (i.e. 122 secs). This would then be output to 2 min 2 secs. The program would also need to be able to display...
  19. Replies
    6
    Views
    14,142

    I knew I could find the answers I was looking for...

    I knew I could find the answers I was looking for here, Thanks all :-)
  20. Replies
    6
    Views
    14,142

    Modulus Operator

    Hi all,

    I'm looking at the modulus operator and having a hard time understanding its practical purpose. The book shows me:



    #include <stdio.h>
    {
    int a = 25, b = 5, c = 10, d = 7;
  21. while (1) { printf("\nmore students (Y or...

    while (1) {
    printf("\nmore students (Y or N)? ");
    scanf("%c", &moreStudents);
    if (!((moreStudents == 'Y')||(moreStudents == 'y'))) {
    break;
    }


    I think I identified his...
  22. How did you end up fixing the problem?

    How did you end up fixing the problem?
Results 1 to 22 of 22