C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ int n,m,i,j; c…… 题解列表 2019年01月13日 0 点赞 0 评论 756 浏览 评分:0.0
DNA (C语言代码) 摘要:解题思路:维护二维数组注意事项:回车参考代码:import java.util.Scanner; public class Main { public static void main…… 题解列表 2019年01月13日 0 点赞 0 评论 676 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int isprime(int x);//声明部分 int m,n,x; int sum=0; …… 题解列表 2019年01月13日 0 点赞 0 评论 881 浏览 评分:0.0
直接输出交换(偷奸耍滑) 摘要:参考代码:#include<stdio.h> #define swap(a, b) printf("%d %d", b, a); int main(){ int a, b; scanf("…… 题解列表 2019年01月13日 1 点赞 0 评论 940 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int sum,i; &n 题解列表 2019年01月14日 0 点赞 0 评论 1427 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.11 (C语言代码) 摘要:解题思路: 由于C语言自带开方函数,所以输出的时候直接转换就可以了注意事项: &nb 题解列表 2019年01月14日 0 点赞 0 评论 667 浏览 评分:0.0
DNA (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int N; int num[17][2]; cin>>N;//保存N…… 题解列表 2019年01月14日 0 点赞 0 评论 1332 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.1 (C语言代码) 摘要:#include <stdio.h>#include <math.h>int main(){ int a; int ans = 0; scanf("%d", &a); a >>= 4;…… 题解列表 2019年01月14日 0 点赞 0 评论 904 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ unsigned a,n,ans = 0; int b[33] = …… 题解列表 2019年01月14日 0 点赞 0 评论 1594 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>unsigned getbits(unsigned value,unsigned n1,unsign…… 题解列表 2019年01月14日 0 点赞 0 评论 1423 浏览 评分:0.0