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

Search:

Type: Posts; User: uma2712

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    6,645

    Re: Credit Card Checker

    Replace the following line..

    lastdig = Integer.substring(total.length()-1, total.length());

    to

    lastdig = Integer.parseInt(strd.substring(strd.length()-1, strd.length()));
  2. Re: Sorting numbers from in an array...please help

    I have tried from your problem statement.

    Try this..
  3. Re: [RESOLVED] XML to Javascript - Conversion of response.

    Find the script for XML to Array conversion using jquery, Ajax :







    Hope this will help you..
  4. Re: Help sorting Int values from Strings and returning top result

    Try this...


    I have used same input file what you have posted...

    Hope this will help you.



    package com.java_sample;
  5. Thread: array quiz

    by uma2712
    Replies
    3
    Views
    10,236

    Re: array quiz

    Try this..

    package com.java_sample;

    import java.util.Scanner;

    public class ArrayQuiz {
    public static void main(String args[]) {
    String[] questions = {"what is apple?", "what is...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured