Phân tích đề bài + không so sánh được 2 tham số trong hàm

Chào mọi người, mình bị vướng ở đoạn

  1. Không hiểu nội dung đề bài lắm - có phải là khi mình gọi hàm thì phải hiển thị kết quả của 3 trường hợp ví dụ không?

  2. Khống chế để người dùng chỉ nhập số, nhập sai thì báo nhập lại.
    3.so sánh 2 tham số trong 1 hàm.

  3. Mọi người cho mình xin vài gợi ý giải bài này theo dạng flowchart hoặc pseudo code để mình làm với,
    Mời mọi người đọc đề bài
    Your assignment is to first develop a conceptual model and document it using either pseudo code or a flowchart to meet the requirements of the program described as follows.
    For your assignment you must write a compare function that returns 1 if a > b , 0 if a == b , and -1 if a < b. The user must be prompted for the values of a and b. The compare function must have arguments for a and b.
    To demonstrate your compare function, you must call the compare function three times, once for each condition, from within your program and display (using print statement) the return code of the function.
    Of course you will make static calls to your function to meet the test requirements. Something like:
    print compare(5,2)
    print compare(2,5)
    print compare(3,3)
    Then your program will switch to user input. Something like:
    print compare(user_input_A, user_input_B)
    Use the following table of values for a and b can be used when calling to test your compare function from within your program:
    Don’t forget to use comments and make your program readable.

Mình gửi mọi người bài giải của mình:

Dòng 18 có cú pháp lạ ghê. Bạn xem kĩ lại xem.

dùng try except, hoặc kiểm tra với method .isdigit()

1 Like

Ah, Dòng 18 là để hiển thị ra như đề bài yêu cầu thôi - Hình như mình sai đoạn này.
Bạn có cách nào để nhắc lại giống như dòng 8 không?

Viết thêm 1 hàm nữa

def stupid_print(a, b):
    print('compare(' + str(a) + ',', str(b) + ')\n' + str(copomare(a, b)))

Bạn có thể dùng .format() để định dạng lại đoạn trên cho dễ nhìn hơn:

print('compare({}, {})\n{}'.format(a, b, copomare(a, b)))
2 Likes

Thanks bạn nhé mình làm được rồi

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?