Viết chương trình sử dụng hàm tính lũy thừa của số nguyên y
Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
Viết chương trình đọc tệp a.txt chứa các số nguyên trên một dòng đưa kết quả tích các số ra màn hình
with open("a.txt", "r") as f:
numbers = list(map(int, f.readline().split()))
product = 1
for number in numbers:
product *= number
print("Tích các số trong file a.txt là:", product)
n = int(input())
m=int(input())
uoc=1
for i in range min(m,n)/2:
if m%i==0 and n%i==0:
uoc = i
print(uoc)
Program HOC24;
var s: string;
i,d: byte;
begin
write('Nhap xau: '); readln(s);
while s[1]=#32 do delete(s,1,1);
while length(s)=#32 do delete(s,length(s),1);
while pos(#32#32,s)<>0 do delete(s,pos(#32#32,s),1);
d:=0;
for i:=1 to length(s) do if s[i]=#32 then d:=d+1;
write('Trong xau co ',d+1, ' tu');
readln
end.
c++:
#include <iostream>
using namespace std;
int main(){
int y;
cin >> y;
int i = 1;
int luythua = 1;
while(i<=y){
luythua = luythua *i;
i = i+1;
}
cout << luythua;
}