Ask Experts Questions for FREE Help !
Ask
    flory41's Avatar
    flory41 Posts: 1, Reputation: 1
    New Member
     
    #1

    Nov 19, 2008, 02:54 PM
    pseudocde algorithm
    write an algorith in pseudocode that takes 2 integer numbers as an input and determines whether the sum of digits of the 2 numbers is equal. Your algorithm should print a message stating whether the sum of digits of both numbers is equal or not. Hint : you can use the % operator example of prgram run input please enter 1st integer 256 please enter 2nd integer 760 output the sum of digits of both numbers is equal

Check out some similar questions!

Algorithm Inquiry [ 1 Answers ]

I have an amount of $1.85 that I have to convert into quarters, dimes, nickels and pennies. The following is what I have come up with: Q = Amount/25 Amount = Amount - 25 * Q D = Amount/10 Amount = Amount - 10 * D N = Amount/5 Amount = Amount - 5 * N

Program and algorithm [ 1 Answers ]

HI ,, CUD ANYONE GIVE ME A WORKING ALGORITHM AND PROGRAM IN C ABOUT LCM AND MODE , MEDIAN ,,AND HCF,, IT SHULD WORK IN LINUX OS TOO.. THANK..U..:o :)

Structure of the algorithm [ 2 Answers ]

Write a set of instructions using while loop and if... else Selection structures to sort the pile of cards according to the Symbols they display and write an appropriate message for each Card, for example 'shaded circle' or 'unshaded square'. Each Message should be on a new line. The...

Using random_shuffle from <algorithm> [ 1 Answers ]

I can't seem to get 'random_shuffle' from <algorithm> to work correctly. I have defined a class 'aCard' which has data members 'aRank' and 'aSuit'. Then define a vector of aCards called 'deck'. I initialize the deck with 'initDeck()' and try to shuffle the deck with 'shuffleDeck()'. Just for...


View more questions Search
 

Question Tools Search this Question
Search this Question:

Advanced Search

Add your answer here.