Among [ni(co)4], [nicl4]2-, [co(nh3)4cl2]cl and na3[cof6], the total number of paramagnetic compounds is
Answers
Answered by
0
#include <iostream>
using namespace std;
int main()
{
int divisor, dividend, quotient, remainder;
cout << "Enter dividend: ";
cin >> dividend;
cout << "Enter divisor: ";
cin >> divisor;
quotient = dividend / divisor;
remainder = dividend % divisor;
cout << "Quotient = " << quotient << endl;
cout << "Remainder = " << remainder;
return 0;
}
Similar questions