getline() 与get()两个函数的异同 摘要:#include<iostream> #include<cstdio> #include<string> #include<vector> using namespace std; cons…… 文章列表 2019年04月11日 0 点赞 0 评论 577 浏览 评分:0.0
数组与指针,能看懂的肯定是高手 摘要:#include<stdio.h> int main() { int a = 10; printf("%d\n",0[&a]); unsigned int b= &a; printf("%…… 文章列表 2019年04月08日 3 点赞 12 评论 508 浏览 评分:2.0
利用递归函数寻找最大路径的方法,例题来自p1004 摘要:#include<iostream>#include<cstdio>using namespace std;int a[1001][1001],b[1001][1001];//a数组表示这个位置的高度…… 文章列表 2019年04月05日 0 点赞 0 评论 701 浏览 评分:0.0
很多人围成一圈,叫号,叫到某固定号出去。这里提供两种方法,希望可以理解。 摘要:#include<iostream>using namespace std;void fenxi(int n,int m){ int a[1000],s,num=0,i=0; for(i=0;i<…… 文章列表 2019年04月03日 1 点赞 0 评论 538 浏览 评分:0.0
计算int数的各个数加起来的和 摘要:#include <iostream>//方法一#include <cmath>using namespace std;long long n;//long long代表他是64位int main…… 文章列表 2019年04月01日 0 点赞 0 评论 515 浏览 评分:0.0
DNA:打印类似DNA的图形,这种题主要找规律 摘要:#include<iostream>using namespace std;int main(int argc, char const *argv[]) { int N; cin>>N; …… 文章列表 2019年03月31日 1 点赞 0 评论 444 浏览 评分:0.0
求救!谢谢。 摘要:问题:已知下列函数声明 请实现 min()的函数体 它查找并返回 vec 的最小元素 要求首先使用 索引 vec 中元素的 for 循环 来实现 min() 然后 再使用 通过迭代器遍历 vec 的 …… 文章列表 2019年03月31日 0 点赞 0 评论 493 浏览 评分:0.0
对字母字符串进行排序 摘要:#include<iostream>#include<cstring>using namespace std;int main(int argc, char const *argv[]) { cha…… 文章列表 2019年03月31日 0 点赞 0 评论 361 浏览 评分:0.0
string类的加减操作以及find函数 摘要: #include<iostream> #include<string.h> #include<cmath> #include<cctype> using namespace std; i…… 文章列表 2019年03月30日 0 点赞 0 评论 985 浏览 评分:0.0
string类的构造函数 摘要: #include<iostream> #include<string.h> using namespace std; int main(int argc, char const *argv[…… 文章列表 2019年03月30日 0 点赞 0 评论 820 浏览 评分:0.0