#include #include using namespace std; //This program is chinese.C. //To run it and see the output, put this program in your home directory. Then // // c++ chinese.C // ./a.out > public_html/chinese.html // //Then point your web browser at // // http://storm.cis.fordham.edu/~jsmith/chinese.html // //where jsmith is your Fordham login name. //I got the code numbers from https://www.unicode.org/charts/PDF/U4E00.pdf int main() { cout << "\n" << "\n" << "\n" << "\n" << "\n\n" << "\n" << "

\n" << "\n" << "上" //up << "下" //down << "川" //stream << "\n" << "

\n\n" << "

\n" << "up, down, stream\n" << "

\n" << "\n" << "\n"; return EXIT_SUCCESS; }