English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 电子书籍 >
VC书籍
> 查看源码
SpreadsheetCellTest.cpp
资源名称:
c++_advanced_program_codefiles.rar [点击查看]
上传用户:
gtl068a
上传日期:
2007-01-25
资源大小:
233k
文件大小:
0k
源码类别:
VC书籍
开发平台:
Visual C++
SpreadsheetCellTest.cpp:源码内容
#include "SpreadsheetCell.h"
#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
SpreadsheetCell cell1;
cell1.setValue(5.3);
cout << cell1.getValue() << endl;
return (0);
}