Search:

Type: Posts; User: m712

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,419

    Thanks. The problem is now fixed. It is called...

    Thanks. The problem is now fixed. It is called autocomplete as someone mentioned. Once I got the name, I was able to find this information below which describes the feature and how to disable it:

    ...
  2. Replies
    4
    Views
    1,419

    Address bar remembering keywords and passwords

    Let me rephrase my question (the way I previously wrote it made it sound like it was due to websites ): When I type in keywords, usernames, and passwords in address bars ( such as at google where...
  3. Replies
    4
    Views
    1,529

    Thanks. I think the method that I used also works...

    Thanks. I think the method that I used also works ( haven't checked it completly, though). I just noticed that there is an unecessary incrementation of the variable i in the for loop. The outupt is...
  4. Replies
    4
    Views
    1,529

    But I'm not allowed to use any of that stuff...

    But I'm not allowed to use any of that stuff (this is for school).
  5. Replies
    4
    Views
    1,529

    Help with loop to convert string to int

    trying to a string variable named hexnumber to convert each character (a through f ) to corresponding integer (10-15):


    int input[100];//array of ints to store user's input digits
    int i;
    char...
  6. Thread: Linking error!

    by m712
    Replies
    2
    Views
    2,130

    Thanks!

    Thanks!
  7. Thread: Linking error!

    by m712
    Replies
    2
    Views
    2,130

    Linking error!

    Why I am getting a linking error with this code?

    one compiler printed this:
    "
    [Linker error] undefined reference to `box::box(float, float, float, float, float, basic_string<char,...
  8. Replies
    4
    Views
    1,587

    Thanks for the help!

    Thanks for the help!
  9. Replies
    7
    Views
    5,472

    I gotta write this program without using rand()...

    I gotta write this program without using rand() because it's an assignment for an intro. to computing class...we haven't disccused rand().
  10. Replies
    4
    Views
    1,587

    passing a class member function by reference?

    Is it okay to do this?



    #include<iostream>


    int main()
    {
  11. Replies
    2
    Views
    998

    value-returning functions

    Is it possible for them to return more than one value without using any advanced tools.

    I tried to do it in this code, but only one value in the function was printed:



    #include<iostream>
    ...
  12. Replies
    7
    Views
    5,472

    I am allowed to make my own functions, but I...

    I am allowed to make my own functions, but I don't think I'm allowed to use the time function ( don't know what it is either, I'm only familiar with clock() ).

    I was planning to store the...
  13. Replies
    7
    Views
    5,472

    Random character generator algorithm

    Will someone please critique my algorithm/plan?

    I need to write a program that will generate random characters (they can be either numbers, or upper or lower case letters) in the following format...
  14. Getting compile time error due to struct member of type int

    This code executes fine as long as I keep the member lengthofvideo of structure Videocollection of type string. When I change it to type int I get an error. I want to change it to type int so that I...
  15. Thanks

    Thanks
  16. Thanks, I corrected the array problem...but I...

    Thanks, I corrected the array problem...but I still am getting compile time errors even with the eightmoviedatabase.moviedata due to the three member selectors in the for loop;
    it says "request for...
  17. Inputing data of a struct member(declared as an array) from a file

    Is this not allowed or did I do something wrong? Please help!

    For now, I'm just trying to read the moviedescription from the file "inmoviedata.txt." The first 8 lines contain the name of 8 movies...
  18. Replies
    1
    Views
    2,524

    Creating a simple database: is my approach OK?

    I'm trying to create a database of 8 movies with things about them (length,actor,actress,etc.) and output those things in a table.

    At the point which I'm at in the code below, do I just need to...
  19. Thanks. That should work great. I think the...

    Thanks. That should work great. I think the problem with my code above is that if the user only enters 3 numbers char4 and char5 will not even be read--not even as blankspace characters, so digits...
  20. trying to get the computer to count user input digits

    I'm just testing what I've wrote so far to check if it's correct, but it's not...where did I go wrong?




    /*
    Purpose: This program accepts a number, up to 5-digits, and the prints it out
    ...
  21. Replies
    12
    Views
    1,747

    I'm so sorry, I made a mistake; the program works...

    I'm so sorry, I made a mistake; the program works correctly. I am going to delete that post.
  22. Replies
    12
    Views
    1,747

    Thanks to both of you! That makes things so much...

    Thanks to both of you! That makes things so much easier.

    Also, if it's not too much to ask, I was curious to know whether I need to know how many digits/characters the hexadecimal number( user...
  23. Replies
    12
    Views
    1,747

    is that OK?? I thought it wouldn't be because...

    is that OK?? I thought it wouldn't be because hexadecimals include a,b,c,d, and e. But I don't know, is it OK?
  24. Replies
    12
    Views
    1,747

    what datatype do I assign hexadecimal input

    The user inputs a hexadecimal number. What data type do I declare the user's input to be...string? or...?


    I'm going to be converting it to the corresponding decimal place number.
  25. Thread: !cin

    by m712
    Replies
    2
    Views
    1,038

    !cin

    in this segment of code




    loopCount = 1;
    while(true)
    { cin>>num1;
    if (!cin||num1>=100)
    break;
Results 1 to 25 of 33
Page 1 of 2 1 2