妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b; while(scanf("%d %d",&a,&b) == 2 && a){ print…… 题解列表 2017年08月26日 0 点赞 0 评论 851 浏览 评分:2.5
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; while(1) { scanf("%d%d",&a,&b); if(a==0&&…… 题解列表 2017年09月20日 1 点赞 0 评论 1401 浏览 评分:4.6
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a[100],b[100],i=0; while(1){ scanf("%d %d",…… 题解列表 2017年10月22日 0 点赞 0 评论 1301 浏览 评分:8.6
WU-妹子杀手的故事 (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a,b; while(scanf("%d%d",&a,&b)) { if(a==0&b==0) …… 题解列表 2017年12月25日 1 点赞 0 评论 769 浏览 评分:0.0
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>main(){ int a,b; while(scanf("%d %d",&a,&b)!=EOF&&a!=0&&b!=0) { pr…… 题解列表 2018年01月05日 0 点赞 0 评论 437 浏览 评分:0.0
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdlib.h>using namespace std;int main (){ int a,b; whil…… 题解列表 2018年07月28日 0 点赞 0 评论 541 浏览 评分:0.0
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:int a,b;while(scanf("%d %d\n",&a,&b)!=EOF) if(a==0 && b==0) { break;…… 题解列表 2018年11月05日 6 点赞 0 评论 1122 浏览 评分:7.3
妹子杀手的故事 (C语言代码) 摘要:解题思路: 其实这道题目是作者欺骗我们ACM简单。 诶参考代码:#include<stdio.h> int main() { int a,b; while(scanf("…… 题解列表 2018年11月30日 0 点赞 0 评论 398 浏览 评分: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 评论 482 浏览 评分: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 评论 258 浏览 评分:0.0