汪汪与打针(乐,爱打狂犬疫苗是吧) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b,i=0;//i是打的疫苗数 while(~scanf("%d%d",&a,&b)…… 题解列表 2023年10月27日 0 点赞 0 评论 48 浏览 评分:0.0
题解 1798: 汪汪与打针(C) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int m(int a,int b) //计数函数{ int i,x=120,s=a; //i是最后的次数,x是本次的花费…… 题解列表 2023年02月15日 0 点赞 0 评论 49 浏览 评分:0.0
汪汪和打针 摘要:解题思路:注意事项:有点漏洞,不过可以过这题参考代码:#include<iostream>using namespace std;int m = 120, l = 100;///定义疫苗的价钱int …… 题解列表 2022年11月17日 0 点赞 0 评论 109 浏览 评分:0.0
汪汪与打针(C++简单逻辑清晰) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int f(int a,int b) //返回次数 { …… 题解列表 2022年10月31日 0 点赞 0 评论 126 浏览 评分:9.9
1798-汪汪与打针(简洁) 摘要:```cpp /* 1.最多打4针 2.打针顺序:妙三多->妙三多->妙三多->狂犬疫苗 3.时间范围:两个月 */ #include using namespace std; …… 题解列表 2022年10月15日 0 点赞 0 评论 129 浏览 评分:0.0
1798: 汪汪与打针(python) 摘要:while True: try: a,b = map(int,input().split()) if a<120:   题解列表 2021年12月31日 0 点赞 0 评论 186 浏览 评分:0.0
汪汪与打针 -题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String[] args) { …… 题解列表 2020年10月28日 0 点赞 0 评论 353 浏览 评分:9.9
汪汪与打针 -题解(C语言代码)-你读懂题了吗? 摘要:代码不难,不过请仔细阅读题目,不要被什么毛毛狗狗的打扰。 科普一下:妙三多是猫三联疫苗项目的其中一个牌子。三多三多不是许三多,三联就是要打三针吧 那个狂犬疫苗就打一针。 这就说明了这个题,什么再…… 题解列表 2020年03月12日 0 点赞 2 评论 761 浏览 评分:9.9
汪汪与打针 -题解(Python代码) 摘要: def func(a, b): money = a # 汪汪的钱数 count = 0 # 妙三多的次数 num = 0 # 总的次数 …… 题解列表 2020年03月08日 0 点赞 0 评论 397 浏览 评分:9.9
汪汪与打针 -题解(C语言代码)简单易懂噢 摘要:其实只要将每个月打针钱的限制条件找出来就很好想了 ```c #include int main(){ int a,b; while(scanf("%d%d",&a,&b)==2){ …… 题解列表 2020年02月21日 0 点赞 0 评论 563 浏览 评分:9.9