Мой код C++ не отображает номер мобильного телефона с 10 цифрами в чем ошибка в моем коде (я пытался запустить его в turbo C++)
#include<iostream.h> class customer { private: int billingamount[5][2]; void acceptdetails() { for(int r=0;r<5;r=r+1) { cout<<"Enter a mobile number:"; cin>>billingamount[r][0]; cout<<"Enter the billing amount"; cin>>billingamount[r][1]; } } void displaydetails() { for(int r=0;r<3;r=r+1) { cout<<"Mobile Number"<<billingamount[r][0]; cout<<"\t"<<"Billing Amount"<<billingamount[r][1]<<endl; } } }; int main() { customer object; object.acceptdetails(); object.displaydetails(); return 0; } What I have tried: I tried to introduce one more variable mobilenumber and tried to limit it to ten digits in the input but it didn't work