题解 1386: 妹子杀手的故事

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

a,b=0时跳出循环

摘要:解题思路:注意事项:参考代码:while True:    a,b=map(int,input().split())    if a==0 and b==0:        break    prin……

妹子杀手的故事 (C语言代码)

摘要:解题思路:        其实这道题目是作者欺骗我们ACM简单。    诶参考代码:#include<stdio.h> int main() { int a,b; while(scanf("……

编写题解 1386: 妹子杀手的故事

摘要:解题思路:注意事项:参考代码://行测试数据,每行包含两个整数a和b(0<a,b<=100),表示长方形的长和宽。当a和b同时为0时,表示输入结束 #include<stdio.h> int ma……

妹子杀手的故事

摘要:解题思路:写的比较简单注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while( (scanf("%d %d",&a,&b)) && a && b)……