[solved] – Question 83826

I don’t understand my edhesive program is saying I have a unexcptcted outcome when it looks good to me. Here is the code.

a = input(‘Enter a number: ‘)
b = input(‘Enter a number: ‘)
c = input(‘Enter a number: ‘)
d = input(‘Enter a number: ‘)
e = input(‘Enter a number: ‘)
f = input(‘Enter a number: ‘)

list1 = str(max(a,))
list2 = str(max(a, b,))
list3 = str(max(a, b, c))
list4 = str(max(a, b, c, d))
list5 = str(max(a, b, c, d, e))
list6 = str(max(a, b, c, d, e, f))

print ((‘Enter a number: ‘) + a + (‘nLargest: ‘) + list1)
print ((‘Enter a number: ‘) + b + (‘nLargest: ‘) + list2)
print ((‘Enter a number: ‘) + c + (‘nLargest: ‘) + list3)
print ((‘Enter a number: ‘) + d + (‘nLargest: ‘) + list4)
print ((‘Enter a number: ‘) + e + (‘nLargest: ‘) + list5)
print ((‘Enter a number: ‘) + f + (‘nLargest: ‘) + list6)

Expert Answer


[solved] – Question 8388

A simple java program to calculate numbers 1 to 200 and display the result
1. The program should operate in such a way that two classes and two custom methods are used withsame package.
2. One of the methods should have return type while the other should not.

Expert Answer


[solved] – Question 83897

I can’t seem to fine one … But I have a final due and I need a program and citation with these parameters … “Find a Python program that uses something from the last two chapters (lists or files), uses at least one function besides main() and has at least one decision statement. You could choose to find a program from our book or find a program from some other source. Either way, give full credit to the originator of the code using an APA citation. Put the citation in comments in the code”

Expert Answer


[solved] – Question 83916

i need solution of chapter 10 inheritance exercise 8 part b c d and g. i hav e a assingment that i submit today so can you send me the solutoin

Expert Answer


[solved] – Question 83920

1)Create an abstract class named Account (include methods like Deposit, Withdrawal and properties like AvailableBalance, MinBalanceRequired)

a) Derive classes SavingAccount & CurrentAccount from Account. You can use some additional properties & methods in these derived classes
b) In the main program, give an option to the user to create any type of account and then give the options to Deposit, Withdraw & check balance. Also give a warning to user as soon as Available balance goes below MinReqdBalance.

Use—Abstract Class, Properties, Constructors, User defined Exception, Function overloading. Static Members

Expert Answer


[solved] – Question 84000

Read 10 integers from the keyboard in the range 0 -100, and count how many of them are larger than 50, and display this result.

Expert Answer


[solved] – Question 84003

Read 10 integers from the keyboard in the range 0 -100, and count how many of them are larger than 50, and display this result.

Expert Answer


[solved] – Question 84004

Find the average, maximum, minimum, and sum of three numbers given by the user.

Expert Answer


[solved] – Question 84007

Find the average, maximum, minimum, and sum of three numbers given by the user.

Expert Answer


[solved] – Question 84008

Find the average, maximum, minimum, and sum of three numbers given by the user.

Expert Answer