妹子杀手的故事-题解(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 评论 161 浏览 评分:0.0
妹子杀手的故事-题解(Python代码) 摘要:```python while True: a,b=map(int,input().strip().split()) if (a==0 and b==0): b…… 题解列表 2020年04月20日 0 点赞 0 评论 291 浏览 评分:0.0
妹子杀手的故事-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { int a,b; while(scanf("%d %d",&a,…… 题解列表 2020年02月13日 0 点赞 0 评论 627 浏览 评分:9.9
妹子杀手的故事-题解(C语言代码) 摘要:看到妹子杀手瞬间来了兴致,所以打算写一写这道题的题解,虽然简单,不过也算是做了一件有意义的事情 题目的要求就是求矩形的面积,我相信这肯定难不倒大家。 可别忘了,这道题要求是多组测试并且以同…… 题解列表 2019年07月11日 0 点赞 0 评论 519 浏览 评分:0.0
妹子杀手的故事-题解(C语言代码) 摘要:# MarkDown编辑器基本使用 #include int main() { printf("kjhgaskj\n"); int a,b; for(;;)…… 题解列表 2019年06月21日 0 点赞 0 评论 388 浏览 评分:0.0
妹子杀手的故事 (C语言代码)只能水题了。。。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d %d\n",&a,&b)!=EOF&&a&&b) { …… 题解列表 2019年04月19日 0 点赞 0 评论 270 浏览 评分:0.0
妹子杀手的故事 (C语言代码) 摘要:这水题是认真的?注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d %d",&a,&b)!=EOF){ if(a==0 &…… 题解列表 2019年04月03日 0 点赞 0 评论 274 浏览 评分:0.0
。。水。。:妹子杀手的故事 (C语言代码)只有3行 摘要:#include<stdio.h> int main() { int a,b; while(scanf("%d%d",&a,&b)&&a&&b) printf("%d\n",a*b)…… 题解列表 2019年02月23日 1 点赞 5 评论 639 浏览 评分:0.0
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; while(scanf("%d %d", &a,&b) && a+b != 0) pr…… 题解列表 2019年01月20日 0 点赞 0 评论 239 浏览 评分:0.0
ACM水题 之 妹子杀手的故事 (C语言代码) 摘要:解题思路:多选输入:while(~scanf("%d%d",&a,&b));结束条件a为0 ,b为0。注意事项:参考代码:#include <stdio.h> int main() { int…… 题解列表 2019年01月19日 0 点赞 0 评论 468 浏览 评分:0.0