CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: camimi

Search: Search took 0.01 seconds.

  1. Re: Couting in the multidimensional array in java?

    Repeated blocks are not printed?
  2. Replies
    7
    Views
    1,578

    Re: I just have a small question. Please help me

    for(int count=1;count<=100;count++){
    if(count>=32&&count<=39){
    printf("&d\n",count);
    }
    }
  3. Replies
    7
    Views
    1,578

    Re: I just have a small question. Please help me

    I don't think you should post it here... You should open a new thread. Anyway, your question required you to use loops to solve the problem. for example question 1

    for(int count=1; count<=12 ;...
  4. Replies
    0
    Views
    672

    IP2Location DB1.LITE

    IP2Location™ LITE IP-COUNTRY Database provides a solution to determine the country of origin for any IP address in a few simple steps. First, retrieve the IP address from the networking protocol or...
  5. PHP Re: Need help or suggestion in making a website app

    Try this, IP2Location db1 lite.
    Its free to use and provide you the country of the user based on the IP address. A variety of APIs is also provided.
  6. Re: Writing Java from pseudocode: interest payments

    Just straightforward.



    public class Main {
    public static void main(String[] args){
    int months = 1;
    double balance = 500;
    double totalpaid = 0;
    double interest = 0;
  7. Replies
    3
    Views
    988

    Re: UnknownFormatConversion

    Most likely is your spacing problem since I can run it.. and the frequency[14] is not a problem since ArrayIndexOutOfBoundsException is there.
  8. Replies
    3
    Views
    988

    Re: UnknownFormatConversion

    the integer responses contain a number 14 in it which cause problem since the frequency has a size of 6 and frequency[14] will not work.. About the spacing in your code, I'm not sure whether you...
Results 1 to 8 of 9





Click Here to Expand Forum to Full Width

Featured