我的控制台应用程序看起来像这样。
#include "stdafx.h"
#include <iostream>
#include <cmath>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int a, b;
cin>>a>>b;
cout<<"% "<<a%b<<endl<<"fmod "<<fmod(a,b)<<endl;
system("pause");
return 0;
}
我是 C++ 的新手,我有 2 个问题:
- 在 VS 上编写此应用程序。为什么我需要包含“stdafx.h”?有什么要求吗?这是什么?
fmod
和有什么区别%
吗?为他们获得完全相同的结果:
提前谢谢..