Is it possible display an input message as follows?
Enter First Fraction:_/_
Enter Second Fraction: _/_
Where _ are Input spaces?
Using some sort of the following code??
cout<<"Enter First Fraction: ";
cin>>N1>>"/">>D1;
cout<<"Enter Second Fraction: ";
cin>>N2>>"/">>D2;
OR
cout<<"Enter First Fraction: ";
cin>>N1>>/>>D1;
cout<<"Enter Second Fraction: ";
cin>>N2>>/>>D2;
Here is the Solution to my problem just in case anyone else is facing it.. Credits go to @qPCR4vir
Here's the Part of code that Specifies the Format ONLY for '
cin' Statement.Note: This is Simplified/Modified Solution of @qPCR4vir at; Reading in a specific format with cin