A+B for Input-Output Practice (I)-题解(Python代码)python开荒,关于无输入如何推出循环 摘要:```python x = input() # 先输入 while x: # 如果input无输入x值为"",循环退出 s = x.split(" ") print(int(s…… 题解列表 2020年03月15日 0 点赞 0 评论 1428 浏览 评分:9.9
矩阵最大值 -题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int m,n; while(cin>>m>>n){ …… 题解列表 2020年03月15日 0 点赞 0 评论 827 浏览 评分:0.0
蓝桥杯算法训练VIP-寂寞的数-题解(C++代码)-9%错误 摘要:###### 这个题对细节要求很高一直错9% 1.if(produce(i)>n; for(int i=1;i…… 题解列表 2020年03月15日 0 点赞 0 评论 988 浏览 评分:9.9
[编程入门]三个字符串的排序-题解(C语言代码) 摘要: #include #include void sort(char a[],char b[]){ char t[100]; if(strc…… 题解列表 2020年03月15日 0 点赞 0 评论 1560 浏览 评分:9.9
旋桜-蓝桥杯历届试题-翻硬币-题解(C++代码) 摘要:这题白给 ```cpp #include #include using namespace std; string str1, str2; int ans = 0; …… 题解列表 2020年03月15日 0 点赞 0 评论 954 浏览 评分:9.9
[编程入门]结构体之成绩记录 (Python代码) 摘要:没看到python解题的我就贴一下自己的,不是很简洁,有优化的欢迎贴出来学习。 ```python def grade_in_pri(n): num=[] name=[] …… 题解列表 2020年03月15日 0 点赞 0 评论 1164 浏览 评分:9.9
对称矩阵-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n){ in…… 题解列表 2020年03月15日 0 点赞 0 评论 1211 浏览 评分:0.0
数组排序 -题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n){ in…… 题解列表 2020年03月15日 0 点赞 0 评论 1326 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要: 其实这个挺简单的,没什么难度,但是一定要注意“空格”! 题目描述的:" please input a number:\n”和" please input a string:\n"。 …… 题解列表 2020年03月16日 0 点赞 0 评论 1105 浏览 评分:0.0
[亲和数]-题解(C语言代码) 摘要: #include int fun(int m) { int n=0; int i=1; for(i=1;i…… 题解列表 2020年03月16日 0 点赞 0 评论 1026 浏览 评分:0.0