Write a program which allows the user to enter a list of numbers.Write a program which allows the user to enter a list of numbers,then works out whether there are any two numbers in the list which sum to 100.Hint:you could loop through the numbers in

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/29 17:11:10

Write a program which allows the user to enter a list of numbers.Write a program which allows the user to enter a list of numbers,then works out whether there are any two numbers in the list which sum to 100.Hint:you could loop through the numbers in
Write a program which allows the user to enter a list of numbers.
Write a program which allows the user to enter a list of numbers,then works out whether there are any two numbers in the list which sum to 100.Hint:you could loop through the numbers in the list,and for each number,loop through the list again looking for a number that adds to it to make 100.However,there are other ways to do this too.

Write a program which allows the user to enter a list of numbers.Write a program which allows the user to enter a list of numbers,then works out whether there are any two numbers in the list which sum to 100.Hint:you could loop through the numbers in
def checkio(data, target):
data.sort()
i = 0
j = len(data)-1
while(i < j):
if data[i] + data[j] > target:
j -= 1
elif data[i] + data[j] < target:
i += 1
else:
return str(data[i]) + ' + ' + str(data[j]) + ' = ' + str(target)
return 'No solution!'

if __name__ == '__main__':
data = [10,2,3,87,11,1,2,41,34,56,44,93,5,16,74,23,22,19]
target = 100;
print data
print checkio(data,target)

write a program that converts a number in base 10 to its equivalent in base 2. Java write a program to calculate the factorial of any natural number entered by a user. Write a C program that accepts ten number and decide whether the number is prime. Write a program to print the first 10 Fibonacci numbers.Each Fibonacci numb Write a program that generates 4-,10-,or 20-sided dice. write a program to represent multiplication tables.用最简单的JAVA语言. Please write a Java program,compute the GreatestCommonDivisor求JAVA程序 Write a program to find all Armstrong number in the range of 100 and 999. 英语翻译1.write a program that prints its input one word per line2.write a program that initia lizes an anrray of 10 elements.Each element should be equal to its subsript.The program should then print each of the elements.3.write a program that w This computer program ______(write) in 2004 write a program to read a four digit integer and print the sum of its digits.Hint :Use / and % operators. Write a program,which performs as the following:(java)Write a program,which performs as the following:Create two interfaces Automobile and Nonautomobile.They contain abstract methods AutomobileMotionMode( ) and NonautomobileMotionMode( ).Create a Write a program that will simulate n coin tosses.After every 100 tosses print out the proportion Java write a program to read an integer,n,from the keyboard and output n row of pascal's triangle. write a program that scans the initial IbM and replaces the lowercase b with uppercase B求大神指教 Enter 10numbers from the keyboard,write a program to find the maximal number and its subscript,an 一道简单的 C语言题目 小弟在线等Write a C program that produces the following outputCounting down54321Liftoff! Write a program to append one file”1.txt” at the end of another “2.txt”.用c编