Chemistry, asked by Ajaymahajan3615, 1 year ago

A particular atom has 110 electrons. Assume that the shell are filled in order of increasing n (that is, no electrons are added to the n+1 shell until the n shell is completely filled). How many electrons will be in all the l = 4 subshells?

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