汪汪与打针 (C语言代码)
摘要:解题思路:看清楚题目,用一个变量s保存当前剩下的钱,用变量k保存能按时接种次数,一次次判断即可。具体看代码,解释很清楚。 注意事项:接种完一次之后才把本月挣得钱加到s中。参考代码:#include <……
汪汪与打针(乐,爱打狂犬疫苗是吧)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int a,b,i=0;//i是打的疫苗数
while(~scanf("%d%d",&a,&b)……
汪汪与打针 -题解(Python代码)
摘要:本题直接使用if嵌套即可。笔者此处没有使用循环。
```python
x=input()
while x:
a,b=map(int,x.split())
cash=a
……
汪汪与打针 (C语言代码)
摘要:#include <stdio.h>
int main()
{
int a,b,m=0,n=0;
while(scanf("%d%d",&a,&b)!=EOF)
{
if(a<……
1798: 汪汪与打针(python)
摘要:while True:
try:
a,b = map(int,input().split())
if a<120:
 
汪汪与打针 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,m=0,n=0; while(scanf("%d%d",&a,&b)!=EOF) { if……
汪汪与打针 (C++代码)
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,i=2,sum; while(cin>>……
题解 1798: 汪汪与打针(C)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int m(int a,int b) //计数函数{ int i,x=120,s=a; //i是最后的次数,x是本次的花费……
汪汪与打针 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a,b; int t = 0,m = 2,c = 1; ……