2010年8月30日

摘要: 1)std::stringstream的定义如下:typedef basic_stringstream<char> stringstream;它是basic_stringstream模板在char类型上的一个特化,使用该类型需要包含头文件<sstream>.std::stringstream经常被用来将字符串和各种基本数据类型之间进行转换,功能类似于C标准库中的itoa和atoi函数,但std::stringstream能做的事情更多,我们就从下面这个实例代码来进行学习吧:#include <iostream>#include <sstream> 阅读全文
posted @ 2010-08-30 20:54 android开发实例 阅读(911) 评论(0) 推荐(0) 编辑
摘要: 在ACM竞赛中,在将编制好的程序提交到在线评测系统(Online Judge)之前,必须在本机上调试通过。在本机调试的方法比较讲究,一般是从一个文本文件,如“asce.txt”中读入数据,再输出数据到屏幕上即可。下面来看一下zoj1001问题A+B problem:===============================================Calculate a + b InputThe input will consist of a series of pairs of integers a and b,separated by a space, one pair of i 阅读全文
posted @ 2010-08-30 15:24 android开发实例 阅读(191) 评论(0) 推荐(0) 编辑

导航