C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main (void) { char a[100]; char b[100]; int …… 题解列表 2018年05月01日 0 点赞 0 评论 1077 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:#include <stdio.h> int main(void) { int a,b,c,t; scanf("%d%d%d",&a,&b,&c); if (a>b…… 题解列表 2018年05月01日 1 点赞 0 评论 1308 浏览 评分:0.0
C语言训练-计算1~N之间所有奇数之和 (Java代码)简化给我留言 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class The149 {public static void main(String[]args){ …… 题解列表 2018年05月01日 1 点赞 0 评论 1040 浏览 评分:0.0
C语言训练-计算一个整数N的阶乘 (Java代码)(都是因为简单你们不想写)简化给我留言 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class The151 {public static void main(String[]args){ …… 题解列表 2018年05月01日 2 点赞 0 评论 1187 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)指针 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <malloc.h>void copystr(char* p1,char* p…… 题解列表 2018年05月01日 0 点赞 0 评论 1193 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.3 (C语言代码) 摘要:解题思路:注意事项:1、宏只是简单的替换,使用宏做算数运算的时候要特别注意替换后的运算顺序。2、为了避免替换后的运算顺序错误,宏运算最好加括号。参考代码:#include<stdio.h> #inc…… 题解列表 2018年05月02日 0 点赞 0 评论 1423 浏览 评分:0.0
超级楼梯 (Java代码) 摘要:解题思路:斐波那契数列注意事项:参考代码: public static void main(String[] args) { // TODO Auto-generated method stub …… 题解列表 2018年05月02日 0 点赞 0 评论 1272 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define LEAP_YEAR(y) ((y%4==0 && y%100!=0) || (y%400)==0)?'L…… 题解列表 2018年05月02日 0 点赞 0 评论 956 浏览 评分:0.0
统计立方数 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 统计立方数 { public static boolean isLfs(int num) { for(int i=1;i<=(int)Math…… 题解列表 2018年05月02日 0 点赞 0 评论 771 浏览 评分:0.0
简单的事情 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 求组合数 { public static long jc(int num) { long j=1; for(int k=2;k<num+1;…… 题解列表 2018年05月02日 0 点赞 0 评论 876 浏览 评分:0.0