汪汪与打针 -题解(C语言代码)简单易懂噢 摘要:其实只要将每个月打针钱的限制条件找出来就很好想了 ```c #include int main(){ int a,b; while(scanf("%d%d",&a,&b)==2){ …… 题解列表 2020年02月21日 0 点赞 0 评论 689 浏览 评分:9.9
汪汪与打针 (C++代码) 摘要:大家注意最多只能打4针,而且题目问的是能按时打针的次数,所以要注意#include<iostream> using namespace std; int main() { int a,b; …… 题解列表 2017年11月28日 2 点赞 0 评论 1564 浏览 评分:9.9
汪汪与打针(C++简单逻辑清晰) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int f(int a,int b) //返回次数 { …… 题解列表 2022年10月31日 0 点赞 0 评论 163 浏览 评分:9.9
汪汪与打针 (C语言代码) 摘要:参考代码:#include <stdio.h> #define M 120 #define G 100 int main(void) { int a,b; while(sc…… 题解列表 2017年12月14日 43 点赞 3 评论 1107 浏览 评分:9.9
汪汪与打针 -题解(C语言代码)值得参考 摘要:注意各种情况的判断 尤其是在打完第三针将要打第四针的时候 #include int main() { int a,b,cnt=0; while (…… 题解列表 2019年11月16日 0 点赞 0 评论 648 浏览 评分:9.9