
c++
weixin_43751285
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c++接受不指定次数字符串
c++ 中的 标准输入输出 #include<iostream> #include<cstdio> using namespace std; // c++ 中的 输入输出 int main() { int n,m; cin>>n>>m; cout<<&原创 2018-11-23 17:53:01 · 243 阅读 · 0 评论 -
c++基本语法输入输出
1.写c++ 程序之前需要先把框架 搭好 无报错后再继续向下写 #include<iostream> #include<cstdio> using namespace std; // 单行 注释 /* 多行 注释 */ int main() { printf("Hello World!\n"); return 0; } 2.c+原创 2018-11-23 17:45:27 · 1018 阅读 · 0 评论 -
c++ if条件语句入门
if语法(入门) #include<iostream> #include<cstdio> using namespace std; int main() { int n; cout<<"Please input number!"&am原创 2018-11-23 17:40:38 · 8776 阅读 · 2 评论