博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
125.C++输入小结
阅读量:5042 次
发布时间:2019-06-12

本文共 785 字,大约阅读时间需要 2 分钟。

1 #include 
2 #include
3 #include
4 #include
5 using namespace std; 6 7 void main() 8 { 9 10 /*char ch1, ch2, ch3;11 cin.get(ch1).get(ch2).get(ch3);12 cout.put(ch1).put(ch2);*/13 14 //char ch[20] = { 0 };15 ////忽略一个字符16 //cin.ignore();17 //在读完的前提下,从当前位置一直到#结束这段字符都忽略了,最大长度是102418 //cin.ignore(1024, '#');19 //设置最大极限20 //cin.ignore(numeric_limits
::max(), '#');21 ////从某个地址写入20个字节的长度,预留一个'\022 //cin.get(ch,20);23 //cout << ch << endl;24 25 char ch[30]{ 0 };26 //从指定字符读取30个字符遇到s终止27 cin.get(ch, 30, 's');28 cout << ch << endl;29 system("pause");30 }

 

转载于:https://www.cnblogs.com/xiaochi/p/8620166.html

你可能感兴趣的文章
Ubuntu 编译出现 ISO C++ 2011 不支持的解决办法
查看>>
1.jstl c 标签实现判断功能
查看>>
Linux 常用命令——cat, tac, nl, more, less, head, tail, od
查看>>
超详细的Guava RateLimiter限流原理解析
查看>>
VueJS ElementUI el-table 的 formatter 和 scope template 不能同时存在
查看>>
Halcon一日一练:图像拼接技术
查看>>
Swift - RotateView
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
UIActionSheet 修改字体颜色
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
Spring注解之@Lazy注解,源码分析和总结
查看>>
多变量微积分笔记24——空间线积分
查看>>
Magento CE使用Redis的配置过程
查看>>
poi操作oracle数据库导出excel文件
查看>>
(转)Intent的基本使用方法总结
查看>>