Asked by Mare
                Write an algorithm and pseudocode that represents a program that allows a user to enter two numbers.  Your program should calculate the sum, difference (both directions), product, and quotient (both directions) of the two numbers.
            
            
        Answers
                    Answered by
            Steve
            
    read x,y
sum = x+y
diff1 = x-y
diff2 = y-x
product = x*y
quot1 = x/y
quot2 = y/x
    
sum = x+y
diff1 = x-y
diff2 = y-x
product = x*y
quot1 = x/y
quot2 = y/x
                    Answered by
            Anonymous
            
    Write an algorithm to find out difference , product, quotient
    
                    Answered by
            berhie
            
    solve
    
                    Answered by
            hi
            
    not helpful but thanks
    
                    Answered by
            Sam
            
    Create an application that will ask the user if he or she is a Value customer.  If the user is a Value Customer, tell the user that he or she has earned a 10% discount on their purchase.
    
                    Answered by
            Sam
            
    The Daily Gazette accepts classified ads in several categories.  For most ads, the newspaper charges 10 cents per word for the first 50 words, and 8 cents per word for every word after that.  Design a flowchart or pseudocode for a program that accepts data about and ad: customer name, ad category, and number of words.  Display all the input data and the price for the add.
    
                    Answered by
            reen
            
    Write a pseudocode to determine the type of triangle, depending upon the value of the sides.
    
                                                    There are no AI answers yet. The ability to request AI answers is coming soon!
                                            
                Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.