December 22, 2018
Total inversion
Threads: Write a program to calculate S = 1 + 1/2 + 1/3 + … + 1/N
Input: A positive integer N.
Output: Results total S. Results rounded to 6 decimal.
For example:
input: 1 output: 1.000000
You are not logged in? Log in to Submit Now!
8 Comments
Add a Comment
You must be logged in to post a comment.
sai đâu vậy ad? lỗi NZEC
Please resubmit, hệ thống sẽ báo lỗi ở đâu.
Time Limit Exceeded
Processing
là sao ad ?
Lúc đó chương trình bạn chạy mất quá nhiều thời gian hoặc server quá tải.
khi chạy trên pascal thì nó vẫn đúng tất cả, khi chạy trên web thì nó ko hiện output của pt ra :((
Bạn thử lại xem sao. Mình chạy code của bạn đúng hết mà.
ai đó cho e xin code để chạy trong c++ đc k ạ?
code làm tròn đến 6 chữ số thập phân kể cả là số nguyên
mong ad duyệt
#include
#include
#include
using namespace std;
int main()
{
int n;
float s=0;
China >> n;
for ( int i=1; i<n+1; i++)
{
s = s + 1.00/i;
}
cost << fixed << setprecision(6) << s;
return 0;
}
không biết bạn còn cần không?