题解 1386: 妹子杀手的故事

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

筛选

妹子杀手的故事

摘要:参考代码:#include <iostream>int main() {    int a, b;    while (true) {        std::cin >> a >> b;      ……

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

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

妹子杀手的故事

摘要:#妹子杀手c++实现 **看到这道题目我直接无语了,几乎都是废话,就是输入长和宽,求面积** ```cpp #include using namespace std; int mai……

a,b=0时跳出循环

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

妹子杀手的故事

摘要:while True:     l,h = map(int,input().split())     if l == 0 and h == 0:         break     print……

妹子杀手的故事

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,m; while(scanf("%d%d",&a,&b)!=EOF) { if(a==0&&b=……

题解 妹子杀手的故事[ C++]

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main(){     int a,b;     while(cin>>a……

妹子杀手的故事

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

简单python走起

摘要:解题思路:。。注意事项:。。参考代码:n=[list(map(int,input().split()))]i=0while n[i][0]>0 and n[i][1]>0:    n.append(l……