妹子杀手的故事-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { int a,b; while(scanf("%d %d",&a,…… 题解列表 2020年02月13日 0 点赞 0 评论 659 浏览 评分:9.9
妹子杀手的故事-题解(Python代码) 摘要:```python while True: a,b=map(int,input().strip().split()) if (a==0 and b==0): b…… 题解列表 2020年04月20日 0 点赞 0 评论 316 浏览 评分:0.0
妹子杀手的故事-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,sum; scanf("%d%d",&a,&b); while(a!=0||b!=0){ su…… 题解列表 2020年12月03日 0 点赞 0 评论 183 浏览 评分:0.0
简单python走起 摘要:解题思路:。。注意事项:。。参考代码:n=[list(map(int,input().split()))]i=0while n[i][0]>0 and n[i][1]>0: n.append(l…… 题解列表 2021年04月07日 0 点赞 0 评论 180 浏览 评分:9.9
妹子杀手的故事 摘要:解题思路:写的比较简单注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while( (scanf("%d %d",&a,&b)) && a && b)…… 题解列表 2021年10月15日 0 点赞 0 评论 107 浏览 评分:0.0
题解 妹子杀手的故事[ C++] 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main(){ int a,b; while(cin>>a…… 题解列表 2021年11月17日 0 点赞 0 评论 268 浏览 评分:9.9
妹子杀手的故事 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,m; while(scanf("%d%d",&a,&b)!=EOF) { if(a==0&&b=…… 题解列表 2021年12月03日 0 点赞 0 评论 156 浏览 评分:0.0
妹子杀手的故事 摘要:while True: l,h = map(int,input().split()) if l == 0 and h == 0: break print…… 题解列表 2021年12月24日 0 点赞 0 评论 165 浏览 评分:0.0
a,b=0时跳出循环 摘要:解题思路:注意事项:参考代码:while True: a,b=map(int,input().split()) if a==0 and b==0: break prin…… 题解列表 2022年04月06日 0 点赞 0 评论 379 浏览 评分:0.0
妹子杀手的故事 摘要:#妹子杀手c++实现 **看到这道题目我直接无语了,几乎都是废话,就是输入长和宽,求面积** ```cpp #include using namespace std; int mai…… 题解列表 2022年08月28日 0 点赞 0 评论 164 浏览 评分:0.0