妹子杀手的故事 (C语言代码)只能水题了。。。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d %d\n",&a,&b)!=EOF&&a&&b) { …… 题解列表 2019年04月19日 0 点赞 0 评论 305 浏览 评分:0.0
妹子杀手的故事 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <deque>#include <algorithm>#include <iostream>#include <cstdlib>#include <it…… 题解列表 2018年01月21日 0 点赞 0 评论 803 浏览 评分:0.0
编写题解 1386: 妹子杀手的故事 摘要:解题思路:注意事项:参考代码://行测试数据,每行包含两个整数a和b(0<a,b<=100),表示长方形的长和宽。当a和b同时为0时,表示输入结束 #include<stdio.h> int ma…… 题解列表 2023年01月07日 0 点赞 0 评论 148 浏览 评分:0.0
妹子杀手的故事 摘要:解题思路:写的比较简单注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while( (scanf("%d %d",&a,&b)) && a && b)…… 题解列表 2021年10月15日 0 点赞 0 评论 127 浏览 评分:0.0
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdlib.h>using namespace std;int main (){ int a,b; whil…… 题解列表 2018年07月28日 0 点赞 0 评论 579 浏览 评分:0.0
妹子杀手的故事 摘要:解题思路:注意事项:参考代码:#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 评论 188 浏览 评分:0.0
妹子杀手的故事 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 妹子杀手的故事_水到不能再水 { public static void main(String[] args) { // TODO Auto-…… 题解列表 2018年05月02日 0 点赞 0 评论 564 浏览 评分:0.0
妹子杀手的故事 (C语言代码) 摘要:解题思路: 其实这道题目是作者欺骗我们ACM简单。 诶参考代码:#include<stdio.h> int main() { int a,b; while(scanf("…… 题解列表 2018年11月30日 0 点赞 0 评论 413 浏览 评分:0.0
妹子杀手的故事-题解(C语言代码) 摘要:看到妹子杀手瞬间来了兴致,所以打算写一写这道题的题解,虽然简单,不过也算是做了一件有意义的事情 题目的要求就是求矩形的面积,我相信这肯定难不倒大家。 可别忘了,这道题要求是多组测试并且以同…… 题解列表 2019年07月11日 0 点赞 0 评论 553 浏览 评分:0.0
妹子杀手的故事 摘要:while True: l,h = map(int,input().split()) if l == 0 and h == 0: break print…… 题解列表 2021年12月24日 0 点赞 0 评论 196 浏览 评分:0.0