?? io20_2_1.03.c
字號:
// #include <iostream>
// #include <iomanip>
#include <iostream.h>
#include <iomanip.h>
/*
* $ a.out
* The winter of our discontent
*
* The
* winter
* of
* our
* discontent
*
*/
int main()
{
const int bufSize = 24;
char buf[ bufSize ];
char *pbuf = buf;
// each string greater than sizeof(bufsize)
// is broken into two or more strings
while ( cin >> setw( bufSize ) >> pbuf )
cout << pbuf << endl;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -