C++蓝桥等考导学/二级:数据类型与变量/之五:流输入输出(8流输入输出)

一、观看视频

01】流输入输出【02】多种多样的输出【03】流输出的格式化控制

04】按照要求输出

二、研读学生讲义

【学生讲义】01】流输入输出【学生讲义】02】多种多样的输出【学生讲义】03】流输出的格式化控制

【学生讲义】【04】按照要求输出

三、练习题(不清楚回头查看有关视频或讲义)【01】关联功能与所需的文件头:
02】使用cin输入一项数据,下面程序片段正确的是:

· 

· 

int a;cin >> a;

· 

cin >> int a;

· 

cin >> a(int);

· 

· 

cin >> a;int a;

03】判定对错:cin连续从键盘读入多项数据可简化为“cin >> 变量名1  >> 变量名2;”,键盘输入的数据个数、类型务必与变量按顺序对应一致,每一项数据都要与回车键结束。
04】向屏幕输出一项数据,下面程序代码片段正确的是:①

· 

· 

int a = 123;a >> cout;

· 

· 

int a = 123;a << cout;

· 

· 

int a = 123;cout >> a;

· 

· 

int a = 123;cout << a;

05】判定对错:通过cout输出多项数据格式是“cout << 输出内容1 << 输出内容2”,程序在输一项数据后自动换行再输出下一项数据。
06】在屏幕上输出下面内容,正确的方法(程序片段)如下(可多选):
2 3
4

· 

· 

cout << "2 3" << endl;cout << "4";

· 

cout << "2 3" << endl << "4";

· 

· 

cout << 2 << " " << '3' << endl;cout << "4";

· 

· 

· 

· 


cout << 2 << " " << 3 << endl;cout << 4;

07】流输出的格式化控制,要使用“iomanip”库,拆解该库名称并说出各部分的意义。
08】“iomanip”库控制打印宽度的描述,错误的是:
控制打印宽度的函数是setw(n)。
②输出的内容超过设置的长度,则按实际长度输出。
③只对其后面所跟的所有输出内容产生作用。
09】下面程序的输出是(  )。

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>#include<iomanip>using namespace std;int main(){    cout << setfill('0') << setw(5) << 99 << 22 << endl;    cout << setfill('#') << setw(5) << 22 << 99 << endl;  return 0;}


0009922
###2299

0009900022
###22###99【10】下面程序的输出是(  )。

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>#include<iomanip>using namespace std;int main(){    cout << setprecision(2) << 3.14159 << endl;    cout << setprecision(4) << 12345.67 << endl;  return 0;}


3.1
1.23e+004

3.14
1.235e+00411】从下面程序的输出结果总结四舍五入规则:

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>#include<iomanip>using namespace std;int main(){    cout << fixed << setprecision(2) << 1.38499 << endl;    cout << fixed << setprecision(2) << 1.39499 << endl;    cout << fixed << setprecision(2) << 1.38600 << endl;    cout << fixed << setprecision(2) << 1.39600 << endl;    cout << fixed << setprecision(2) << 1.38501 << endl;    cout << fixed << setprecision(2) << 1.39501 << endl;    cout << fixed << setprecision(2) << 1.38500 << endl;    cout << fixed << setprecision(2) << 1.39500 << endl;    return 0;}

输出:
1.381.391.391.401.391.401.391.40【12】填入代码行数:
①5位宽度、右对齐输出一个整数:(    )
5位宽度、右对齐、前面补0输出一个整数:(    )
③总位数3输出浮点数:(   )

④小数点后3位输出浮点数:(   )

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>#include<iomanip>using namespace std;int main(){  int a = 255;  double b = 3.14159;    cout << setprecision(3) << b << endl;    cout << setw(5) << a << endl;    cout << fixed << setprecision(3) << b << endl;    cout << setfill('0') << setw(5) << a << endl;  return 0;}

13】OpenJudge练习

OpenJudge-1.1-03】对齐输出

OpenJudge-1.1-04】输出保留3位小数的浮点数

OpenJudge-1.1-05】输出保留12位小数的浮点数

OpenJudge-1.1-06】空格分隔输出