Dinner-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n; // "bowl", "knife", "fork" ,"ch…… 题解列表 2020年04月11日 0 点赞 0 评论 666 浏览 评分:0.0
[编程入门]猴子吃桃的问题-题解(C语言代码) 摘要:#include int main() { int a, sum = 1; scanf("%d",&a); a = a - 1; while(a--…… 题解列表 2020年04月11日 0 点赞 0 评论 615 浏览 评分:0.0
[编程入门]还是接着用选择排序算法加上字符串操作函数来实现 摘要:```c #include #include #define N 50 #define M 3 int main(void) { char s[M][N],s1[N]; …… 题解列表 2020年04月11日 0 点赞 0 评论 822 浏览 评分:8.0
蓝桥杯基础练习VIP-Sine之舞-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; string Int_to_String(int n) { ostringstream stre…… 题解列表 2020年04月11日 0 点赞 0 评论 1198 浏览 评分:7.0
IP判断-题解(C语言代码) 摘要:**1、stringstream输入流** 这个想法 是来源于之前写过一道题名叫 排序(将一串由数字5分隔的数字串按升序排列); 而这道题目,相当于输入一串由“.”分隔的数字,判断每个数字是否0<…… 题解列表 2020年04月11日 0 点赞 0 评论 851 浏览 评分:0.0
Tom数-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ string a; while(cin>>a){ stri…… 题解列表 2020年04月11日 0 点赞 0 评论 627 浏览 评分:0.0
IP判断-题解(C++代码) 摘要:```cpp #include #include using namespace std; bool pan_s(char a){ if(a>='0'&&a3){ …… 题解列表 2020年04月11日 0 点赞 0 评论 887 浏览 评分:6.0
DNA-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int a,b,c; cin>>a; while(a--){ …… 题解列表 2020年04月11日 0 点赞 0 评论 698 浏览 评分:0.0
众数问题-题解(Python代码) 摘要:```python n=int(input()) lis=[] a=b=0 for i in range(0,n): lis.append(int(input())) for i …… 题解列表 2020年04月11日 0 点赞 0 评论 638 浏览 评分:0.0
字符串的输入输出处理-题解(Python代码) 摘要:```python n=int(input()) while True: if n>0: print(input(),end='\n\n') else: …… 题解列表 2020年04月11日 0 点赞 3 评论 1807 浏览 评分:9.2