Results 1 to 8 of 8

Thread: Biggest problem in my life

  1. #1
    Arifmarwat is offline Senior Member+
    Last Online
    10th February 2014 @ 09:05 PM
    Join Date
    27 Feb 2010
    Age
    32
    Posts
    80
    Threads
    20
    Credits
    1,035
    Thanked: 1

    Default Biggest problem in my life

    Do the prgrm of LCM in C++....pleeeeeeeeeeeeeeeeeeeeez....,this is serious prblm for me.....must solve it for me....

  2. #2
    Foreign-Observe's Avatar
    Foreign-Observe is offline Senior Member+
    Last Online
    23rd May 2016 @ 03:50 PM
    Join Date
    04 Apr 2010
    Posts
    583
    Threads
    202
    Credits
    0
    Thanked
    194

    Default

    thanks. why can't u do it?

  3. #3
    kingNazir is offline Junior Member
    Last Online
    20th April 2010 @ 09:57 AM
    Join Date
    19 Apr 2010
    Posts
    12
    Threads
    0
    Credits
    0
    Thanked
    0

    Default

    ok i will make the LCM program for you beacuse i m the student of BCs

  4. #4
    SufyanGujar is offline Senior Member+
    Last Online
    29th December 2010 @ 10:59 PM
    Join Date
    10 Oct 2009
    Location
    England, UK
    Age
    34
    Posts
    157
    Threads
    10
    Credits
    0
    Thanked
    7

    Default

    Here is an example....further on google it

    /* a & b are the numbers whose LCM is to be found */
    int lcm(int a,int b)
    {
    int n;
    for(n=1;;n++)
    {
    if(n%a == 0 && n%b == 0)
    return n;
    }
    }

  5. #5
    loinheart's Avatar
    loinheart is offline Senior Member+
    Last Online
    17th July 2010 @ 12:53 PM
    Join Date
    10 Jul 2009
    Age
    34
    Posts
    58
    Threads
    6
    Credits
    945
    Thanked: 1

    Default

    sallam
    aap aise karo hexadecimal k naam se 1 table hai yahan hi rakha hai main ne chk karo lo vo us se aap ka kaamhojayega other wise phr b zaroorat ho to main yahan hi hota hoo

  6. #6
    saad salman is offline Senior Member+
    Last Online
    15th August 2013 @ 12:20 AM
    Join Date
    26 Mar 2010
    Age
    33
    Posts
    60
    Threads
    11
    Credits
    935
    Thanked
    7

    Default

    how can this program execute????? isn't some error????

  7. #7
    Ganxtr's Avatar
    Ganxtr is offline Advance Member
    Last Online
    5th July 2019 @ 09:15 AM
    Join Date
    15 Nov 2009
    Location
    CRIME CITY
    Posts
    1,740
    Threads
    18
    Credits
    83
    Thanked
    100

    Default

    :'(

  8. #8
    shaaam's Avatar
    shaaam is offline Senior Member+
    Last Online
    23rd October 2014 @ 12:49 PM
    Join Date
    22 May 2010
    Location
    Wah Cantt
    Age
    44
    Posts
    36
    Threads
    2
    Credits
    0
    Thanked
    3

    Default

    I think no errors.

Similar Threads

  1. Biggest problem of Android
    By razib ali in forum Mobile phones problems and Help Zone
    Replies: 17
    Last Post: 30th August 2016, 09:09 PM
  2. Replies: 15
    Last Post: 11th June 2016, 03:38 PM
  3. Solved Biggest problem **SD Cards**
    By ladlahoc in forum Solved Problems (IT)
    Replies: 24
    Last Post: 31st July 2012, 04:11 PM
  4. Solved Biggest driver problem ever
    By kaskal in forum Solved Problems (IT)
    Replies: 29
    Last Post: 26th July 2012, 09:39 PM
  5. biggest problem on net
    By hasnaindon2009 in forum Nokia & Othre Mobiles
    Replies: 1
    Last Post: 25th April 2009, 11:29 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •