Chemistry, asked by vinisaurabh9702, 1 year ago

No of protons and electrons are same in the atom. Then why is it wrong to say that atomic no of an atom is equal to the no of electrons

Answers

Answered by piyushatre29
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