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.
# Nhập số tiền
A = int(input('Nhập số tiền A đồng: '))
# Tính tổng lãi và gốc sau 24 tháng
monthly_interest = 0.01
total_interest = 0
total_principal = 0
for i in range(1, 25):
interest = A * monthly_interest
total_interest += interest
total_principal += A
A += interest
print('Tổng lãi sau 24 tháng:', total_interest)
print('Tổng gốc sau 24 tháng:', total_principal)
n = int(input('Nhập số n: '))
sum = 0
i = 1
while i <= n:
if i % 2 == 0:
sum += i
print(i, end=' ')
i += 1
print()
print('Tổng các số chẵn từ 1 đến n là:', sum)
n = int(input('Nhập số n: '))
sum = 0
i = 1
while i <= n:
if i % 2 == 0:
sum += i
print(i, end=' ')
i += 1
print()
print('Tổng các số chẵn từ 1 đến n là:', sum)
write('Nhap n: ');readln(n);
str(n,s);
d:=length(s);
if s[d-1]+s[d]='68' then writeln('day la bien so dep')
else writeln('day khong phai bien so dep');
uses crt;
var d,m,s,t:integer;
begin
clrscr;
write('Nhap don gia:');
readln(d);
write('Nhap so luong:');
readln(m);
s:=d*m;
t:=s*10%;
s:=s+t;
writeln('So tien phai tra:',s);
readln
end.