#include<iostream>
using namespace std;
int c;
int fun_div();
int fun_div(int a,int b){
if(a%b==0){
c=1;
cout<<"Solution Available :\t"<<c;
} else
{
c=0;
}
return c;
}
int main(){
int c;
int e,d;
cout<<"enter two values : \n";
cin>>e>>d;
cout<<endl;
}
2 つの数値の mod を見つけてプログラムをコンパイルしないときにエラーが発生しました:
2 つの数値の mod を見つけてプログラムをコンパイルしないときのエラー