题解 1224: 整除的尾数

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

筛选

整除的尾数 (C语言代码)

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

整除的尾数-题解(C语言代码)

摘要:题目: 一个整数,只知道前几位,不知道末二位,被另一个整数除尽了,那么该数的末二位该是什么呢 输入数据有若干组,每组数据包含二个整数a,b(0<a<10000, 10<b<100),若遇到0 0则……

注意小于十时的细节即可

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

整除的尾数 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg……

题解 1224: 整除的尾数

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

整除的尾数 (C语言代码)

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

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

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

整除的尾数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b,i;    for(;;)    {      ……