返回列表 發帖

303 函式與陣列 (質數判斷)

本帖最後由 鄭繼威 於 2024-1-30 10:39 編輯

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一程式,包含名為compute()的函式,接收主程式傳遞的一個整數n(n>1),compute()判斷是否為質數,若為質數請回傳「1」,否則回傳「0」至主程式,並輸出該數是否為質數。

提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
大於1的整數

輸出說明
該數是否為質數

範例輸入1
2
範例輸出1
2 is a prime number

範例輸入2
6
範例輸出2
6 is not a prime number

本帖隱藏的內容需要回復才可以瀏覽
Python
  1. def compute(n):
  2.     isprime = 1
  3.     for i in range(2, int(n/2) + 1):
  4.         if n % i == 0:
  5.             isprime = 0
  6.     return isprime

  7. n = int(input())
  8. if compute(n):
  9.     print(str(n) + ' is a prime number')
  10. else:
  11.     print(str(n) + ' is not a prime number')
複製代碼

  1. def compute(x):
  2.     c=0
  3.     for i in range(1,x+1):
  4.         if(x%i==0):
  5.             c+=1
  6.     if(c==2):
  7.         return 1
  8.     else:
  9.         return 0
  10.    
  11. x=int(input())
  12. t=compute(x)
  13. if(t==1):
  14.     print(f"{x} is a prime number")
  15. else:
  16.     print(f"{x} is not a prime number")
複製代碼

TOP

  1. def compute(x):
  2.     c=0
  3.     for i in range(1,x+1):
  4.         
  5.         if x%i==0:
  6.             c=c+1
  7.     if c==2:
  8.         return 1
  9.     else:
  10.         return 0

  11. x=int(input())
  12. t=compute(x)
  13. if t==1:
  14.     print(f"{x} is a prime number")
  15. else:
  16.     print(f"{x} is not a prime number")
複製代碼

TOP

本帖最後由 張桔熙 於 2024-1-30 11:31 編輯
  1. def compute(x):
  2.     c=0
  3.    
  4.     for i in range(1,x+1):
  5.         if(x%i==0):
  6.             c+=1
  7.    
  8.     if(c==2):
  9.         return 1
  10.     else:
  11.         return 0
  12.    
  13. x=int(input())
  14. t=compute(x)

  15. if(t==1):
  16.     print(f"{x} is a prime number")
  17. else:
  18.     print(f"{x} is not a prime number")
複製代碼

TOP

def compute(a):
    c=0
    for i in range(1,a+1):
        if(a%i==0):
            c+=1
    if(c==2):
        return 1
    else:
        return 0
a=int(input())
t=compute(a)
if(t==1):
    print(f"{a} is a prime number")
else:
    print(f"{a} is not a prime number")

TOP

  1. def compute(x):
  2.     c=0
  3.     for i in range(1,x+1):
  4.         if x % 2 == 0:
  5.             c+=1
  6.     if(c==2):
  7.         return 1
  8.     else:
  9.         return 0
  10. x=int(input())
  11. t=compute(x)
  12. if(t==1):
  13.     print(f"{x} is a prime number")
  14. else:
  15.     print(f"{x} is not a prime number")
複製代碼

TOP

  1. def compute(a):
  2.     c=0   
  3.     for i in range(1,int(a)+1):
  4.         if a%i==0:
  5.             c+=1
  6.     if c==2:
  7.         return 1
  8.     else:
  9.         return 0

  10. a=int(input())
  11. ans=compute(a)   

  12. if (ans==1):
  13.     print(f"{a} is a prime number")
  14. else:
  15.     print(f"{a} is not a prime number")
複製代碼
回復 1# 鄭繼威

TOP

返回列表