C语言程序设计教程(第三版)课后习题6.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main { public static void main(String[] args) { Scan…… 题解列表 2017年12月27日 0 点赞 0 评论 544 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:#include<stdio.h> int common(int a,int b) { int c; if(a>b) { do { c=a%b; a=b; …… 题解列表 2017年12月22日 4 点赞 0 评论 1457 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:通过辗转相除法求出两个数的最大公约数是关键,然后再在此基础上求最小公倍数。参考代码:#include<stdio.h>int main(){ int m, n; scanf_s("%d%d"…… 题解列表 2017年12月22日 0 点赞 0 评论 512 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include <stdio.h>int main(){ int a,b,i,j; scanf("%d %d",&a,&b); …… 题解列表 2017年12月15日 0 点赞 0 评论 711 浏览 评分:0.0
我美吗! 摘要:#include <stdio.h> int main() { int m,n,t; int yue,bei; int m1,n1; //用来储… 题解列表 2017年12月11日 1 点赞 1 评论 945 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:辗转相除法求最大公约数和 最小公倍数。注意事项:最小公倍数等于输入的两个数除最大公约数。参考代码:#include<stdio.h>main()//i是最大公约数,j是最小公倍数。{ int…… 题解列表 2017年11月29日 1 点赞 0 评论 525 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:我这运行出来结果是对的,我是来求助的。。请问大神哪里错了呢?是不是要按规定的变量名命名?注意事项:参考代码:#include<stdio.h>int main(){ int a,b,i…… 题解列表 2017年10月25日 0 点赞 0 评论 631 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:算法实现注意事项:参考代码: int m, n, a, b, t, c; scanf("%d%d", &a, &b); m=a; n=b; while(b!=0) …… 题解列表 2017年10月11日 1 点赞 0 评论 648 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,i,j;//i用于计数循环j是个空杯子 scanf("%d %d",&a,&b); if(a…… 题解列表 2017年10月05日 1 点赞 0 评论 835 浏览 评分:3.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d; printf("请输入两个正整数,求最小公倍数与最大公约数》》》》\n");…… 题解列表 2017年09月03日 0 点赞 0 评论 782 浏览 评分:0.0