#include <iostream>
#include <math.h>
using namespace std;
int main(){
double x1 = 8.4, x2 = -1.3, x;
x=modf(x1+x2, &x);
printf("%f; %f; %f", x1, x2, x);
}
Должно работать.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
#include <math.h>
using namespace std;
int main(){
double x1 = 8.4, x2 = -1.3, x;
x=modf(x1+x2, &x);
printf("%f; %f; %f", x1, x2, x);
}
Должно работать.