Examples of using Cout in English and their translations into Indonesian
{-}
-
Colloquial
-
Ecclesiastic
-
Computer
-
Ecclesiastic
Cout<<"single line";// This is single line comment.
Cout<<"Enter a character"<< choice;
Cout<<"Press y or Y to continue:";
Cout<<"\nInput the element of matrix:\n";
Cout<<"This is not a prime number";
Cout<<"Enter number of columns for 2nd matrix:";
Cout<<"Number of columns of second matrix:";
Cout<<"Enter number of rows for 2nd matrix:";
C++ uses cin>> and cout<< for standard input and output.
Cout<<"Enter number of columns for 2nd matrix:";
Cout<<"Enter the elements of first 1st matrix:";
C++ uses cin>> and cout>> as standard input and output functions respectively.
Cout<<"a and b are not equal"<< endi;
Cout<<"x and y are not equal\n";
Cout<<"Enter the elements of first 1st matrix:";
Cout<<"Enter the number of terms you want to add:";
Cout<<"\n The given element is found at the position array"<<
Cout<<"Enter the number of rows and columns of second matrix:";
Cout<<"\n\nPress any key to go back to main menu"<<endl;
the program performed two insertions into std::cout in two different statements.