私のコンソールアプリはそのように見えます。
#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
あり%
ますか? それらに対してまったく同じ結果が得られます。
事前にThx..