ch19_10.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //***********************
  2. //**    ch19_10.cpp    **
  3. //***********************
  4. #include <iostream.h>
  5. void main()
  6. {
  7.   char str[128];
  8.   cout <<"Type in a line of text and press Enter" <<endl;
  9.   cin.getline(str, sizeof(str), 'X');
  10.   cout <<"First line: " <<str <<endl;
  11.   cin.getline(str, sizeof(str));
  12.   cout <<"Second line: " <<str;
  13. }