1234567891011121314
// trying to compute the division of two integers in c++ #include<iostream> using namespace std; int main(){ int i = 234; int j = 10; int p = j/i; cout << p << endl; return 0; }