K
Khách
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.
NC
1
Các câu hỏi dưới đây có thể giống với câu hỏi trên
8 tháng 2 2022
#include <bits/stdc++.h>
using namespace std;
long long i,n,s;
int main()
{
cin>>n;
i=0;
s=0;
while (i<=n)
{
if (i%2==0) s=s-i;
else s=s+i;
}
cout<<s;
return 0;
}
16 tháng 10 2021
uses crt;
begin
clrscr;
writeln((5-2*3)/2:4:2);
writeln((15*4-8)*3);
writeln((15 div 2) mod 3);
writeln((245 div 10) div 3) mod 2);
readln;
end.
ML
1
15 tháng 2 2022
uses crt;
var s:real;
i,n:integer;
begin
clrscr;
readln(n);
s:=0;
for i:=1 to n do
s:=s+(n*(n+1))/((n+2)*(n+3));
writeln(s:4:2);
readln;
end.
Var n , i : integer;
S : real;
Begin
write (' n = ') ; read (n);
S:= 0;
For i : = 1 to n do S : = S + i/(i+1);
writeln (S);
readln;
end.