- 6
- 0
- 约1.41千字
- 约 15页
- 2017-07-27 发布于河南
- 举报
Chapter Three键盘输入与屏幕输出
Learn C++ through English and Chinese;Chapter Three: Keyboard Input and Screen Output(键盘输入和屏幕输出) ;Keyboard Input and Screen Output;Simple keyboard input;int main()
{
const float factor = 2.54; / / 1 inch equals 2.54 cm
float x, in, cm;
char ch = 0;
cout enter length: ;
cin x; / / read a floating point number
cin ch; / / read a suffix
switch (ch) {
case ′i′: / / inch
in =x;
cm =x*factor;
break;;case ′c′: / / cm
in =x/factor;
cm =x;
break;
default:
in =cm =0;
break;
}
cout in in= cm cm\n;
};#include string
int main()
{
string str;
cout“please enter your name”endl;
cinstr;
c
原创力文档

文档评论(0)