题解 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
汪汪与打针 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,i=0; while(scanf("%d %d",&a,&b)!=EOF){ while(1)…… 题解列表 2018年07月25日 0 点赞 0 评论 638 浏览 评分:0.0
汪汪与打针 (C语言代码) 摘要:解题思路:看清楚题目,用一个变量s保存当前剩下的钱,用变量k保存能按时接种次数,一次次判断即可。具体看代码,解释很清楚。 注意事项:接种完一次之后才把本月挣得钱加到s中。参考代码:#include <…… 题解列表 2018年09月12日 1 点赞 0 评论 733 浏览 评分:0.0
汪汪与打针 -题解(C语言代码) 摘要:```c #include int main() { int i; int a,b,sum=0,t=0; while(scanf("%d%d",&a,&b)!=EOF) { sum=a…… 题解列表 2019年08月19日 0 点赞 0 评论 426 浏览 评分:0.0
汪汪与打针 (C语言代码) 摘要:#include <stdio.h> int main() { int a,b,m=0,n=0; while(scanf("%d%d",&a,&b)!=EOF) { if(a<…… 题解列表 2017年12月11日 0 点赞 0 评论 852 浏览 评分:0.0
1798-汪汪与打针(简洁) 摘要:```cpp /* 1.最多打4针 2.打针顺序:妙三多->妙三多->妙三多->狂犬疫苗 3.时间范围:两个月 */ #include using namespace std; …… 题解列表 2022年10月15日 0 点赞 0 评论 129 浏览 评分:0.0
汪汪与打针 -题解(C语言代码) 摘要:import java.util.Scanner; public class Main1798 { /** * @param args */ public stati…… 题解列表 2020年02月05日 0 点赞 0 评论 362 浏览 评分:0.0
汪汪和打针 摘要:解题思路:注意事项:有点漏洞,不过可以过这题参考代码:#include<iostream>using namespace std;int m = 120, l = 100;///定义疫苗的价钱int …… 题解列表 2022年11月17日 0 点赞 0 评论 109 浏览 评分:0.0
汪汪与打针 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,m=0,n=0; while(scanf("%d%d",&a,&b)!=EOF) { if…… 题解列表 2017年12月19日 0 点赞 0 评论 670 浏览 评分:0.0
汪汪与打针 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,i=2,sum; while(cin>>…… 题解列表 2018年08月07日 0 点赞 0 评论 569 浏览 评分:0.0