c++
文章平均质量分 75
qingjoin
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c++第一个小程序
#include using namespace std; int main() { const int SIZE=50; //定义大小。 char name[SIZE]; cout<<"please input you name!\n"; //提示 cin>>原创 2013-05-31 15:01:10 · 507 阅读 · 0 评论 -
C字符存诸操作
char OsdEndBuf[100][255]; char DisplayOsdBuf[100][255]; char Txt[50]="Txt", s1_text[50]="s1_text"; int Line=-1; int coyOsdbuf() //把文本中的内容复制到数组里 {原创 2013-05-31 15:05:31 · 805 阅读 · 0 评论 -
C++读、写、文件操作!
#include #include using namespace std; int main() { ifstream in; in.open("file1.txt"); //打开一个文件 char c; if(!in) //原创 2013-05-31 15:02:19 · 615 阅读 · 0 评论
分享