妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a[100],b[100],i=0; while(1){ scanf("%d %d",…… 题解列表 2017年10月22日 0 点赞 0 评论 1361 浏览 评分:8.6
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:int a,b;while(scanf("%d %d\n",&a,&b)!=EOF) if(a==0 && b==0) { break;…… 题解列表 2018年11月05日 6 点赞 0 评论 1294 浏览 评分:7.3
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; while(1) { scanf("%d%d",&a,&b); if(a==0&&…… 题解列表 2017年09月20日 1 点赞 0 评论 1502 浏览 评分:4.6
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b; while(scanf("%d %d",&a,&b) == 2 && a){ print…… 题解列表 2017年08月26日 0 点赞 0 评论 925 浏览 评分:2.5
编写题解 1386: 妹子杀手的故事 摘要:解题思路:注意事项:参考代码://行测试数据,每行包含两个整数a和b(0<a,b<=100),表示长方形的长和宽。当a和b同时为0时,表示输入结束 #include<stdio.h> int ma…… 题解列表 2023年01月07日 0 点赞 0 评论 193 浏览 评分: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 评论 217 浏览 评分:0.0
妹子杀手的故事 摘要:解题思路:写的比较简单注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while( (scanf("%d %d",&a,&b)) && a && b)…… 题解列表 2021年10月15日 0 点赞 0 评论 155 浏览 评分: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 评论 233 浏览 评分:0.0
妹子杀手的故事-题解(C语言代码) 摘要:看到妹子杀手瞬间来了兴致,所以打算写一写这道题的题解,虽然简单,不过也算是做了一件有意义的事情 题目的要求就是求矩形的面积,我相信这肯定难不倒大家。 可别忘了,这道题要求是多组测试并且以同…… 题解列表 2019年07月11日 0 点赞 0 评论 585 浏览 评分:0.0
妹子杀手的故事-题解(C语言代码) 摘要:# MarkDown编辑器基本使用 #include int main() { printf("kjhgaskj\n"); int a,b; for(;;)…… 题解列表 2019年06月21日 0 点赞 0 评论 488 浏览 评分:0.0