题解 1224: 整除的尾数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1224: 整除的尾数

摘要:```cpp #include using namespace std; int main() { int a,b; while(true) { ……

注意小于十时的细节即可

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int a,b;    while(scanf("%d %d",&a,&b)!=EOF&&a!=0&&b……

编写题解 1224: 整除的尾数

摘要:解题思路:注意事项:参考代码:while True:     a,b=map(int,input().split())     if a==0 and b==0:         break ……

整除的尾数整除的尾数

摘要:解题思路:    可以参考这位大佬的整除的尾数-题解(C语言代码)觉得他写的还不错,我的格式跟他的差不多。注意事项:行末没有空格参考代码:#include<stdio.h>#include<math.……

简单的C实现,整除的尾数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m, n; while (scanf("%d%d", &m, &n) && n && m) { int……

《整除的尾数》题解C

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int a,b;    while(scanf("%d%d",&a……

题解 1224: 整除的尾数

摘要:参考代码:#include<stdio.h>#include<string.h>int main(){    int x,y;    while(scanf("%d%d",&x,&y)!=EOF){ ……