double long float类型读入读出 double取模 fmod

Posted jzssuanfa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了double long float类型读入读出 double取模 fmod相关的知识,希望对你有一定的参考价值。

The library of fmod is #include <cmath>

#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<map>
#include<cstring>
#include<cmath>
using namespace std;

int main(){
  double x;
  long y;
  long long z;

  scanf("%lf",&x);
  double doubleMod = fmod(x,(double)3);
  printf("The result of x mod 3 is %.2lf\n",doubleMod);

  scanf("%ld",&y);
  printf("The result of y is %ld\n", y);

  scanf("%lld", &z);
  printf("The result of z is %lld\n", z);

	return 0;
}

  cout << (-5) % 3 << endl;   // 结果是-2!。。!!。!!

!!!!!

!!。!

!!

。!。!!


  cout << fmod((double)(-5), (double)(-3))<<endl; //结果是-2!。!

!。!

!!!

!!

!!!!!


以上是关于double long float类型读入读出 double取模 fmod的主要内容,如果未能解决你的问题,请参考以下文章