Ответ:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
double a = 1.5, s;
int n = 30;
s = 1/a;
for(n = 1; n<=30; n++){
s = s + s /(a+n);
}
printf("%f", s);
return 0;
Объяснение:
Dev C++. Вроде так, не уверен что правильно.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
double a = 1.5, s;
int n = 30;
s = 1/a;
for(n = 1; n<=30; n++){
s = s + s /(a+n);
}
printf("%f", s);
return 0;
}
Объяснение:
Dev C++. Вроде так, не уверен что правильно.