妹子杀手的故事-题解(C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int a,b;
while(cin>……
编写题解 1386: 妹子杀手的故事
摘要:解题思路:注意事项:参考代码://行测试数据,每行包含两个整数a和b(0<a,b<=100),表示长方形的长和宽。当a和b同时为0时,表示输入结束
#include<stdio.h>
int ma……
a,b=0时跳出循环
摘要:解题思路:注意事项:参考代码:while True: a,b=map(int,input().split()) if a==0 and b==0: break prin……
题解 妹子杀手的故事[ C++]
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main(){
int a,b;
while(cin>>a……
简单python走起
摘要:解题思路:。。注意事项:。。参考代码:n=[list(map(int,input().split()))]i=0while n[i][0]>0 and n[i][1]>0: n.append(l……