1134题解 坑爹看清题意了 (C语言代码) 摘要:解题思路:表达算式即可注意事项:题目的意思是不符合的那项是不会算进去的参考代码:#include <stdio.h> #include <math.h> int main() { do…… 题解列表 2017年12月12日 0 点赞 0 评论 769 浏览 评分:0.0
花落1115:花落的新手写法 (C) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[100],b[100],x,y,i,j,k=0,flag,a_1=0,b_1=0;//x,y z…… 题解列表 2017年12月15日 2 点赞 0 评论 1103 浏览 评分:0.0
DNA (Java代码) 摘要:解题思路:自己自行理解 ;注意事项:参考代码:package cn.hui.lanqiaobei02;import java.util.Scanner;public class Main1115{ p…… 题解列表 2017年12月12日 0 点赞 0 评论 772 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题11.5 (C语言代码)(结构体实现) 摘要:解题思路:这题用的是结构体来做的 想学的可以看看参考代码:#include<stdio.h> struct student { char number[20]; char name[10…… 题解列表 2017年12月12日 2 点赞 0 评论 914 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h" int main() { int a[10],i,sum=0,average,count=0; for(i=0;i<10;…… 题解列表 2017年12月12日 0 点赞 0 评论 815 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:参考代码:#include <stdio.h>int main(){ int N; float M, h, sum = 0; scanf("%f %d", &M, &N); while (N) { …… 题解列表 2017年12月12日 0 点赞 0 评论 632 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题11.8 (C语言代码)(结构体实现) 摘要:参考代码:#include<stdio.h> #include<malloc.h> typedef struct student { int number; int data; st…… 题解列表 2017年12月12日 7 点赞 0 评论 1488 浏览 评分:0.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int i,t,a[10],min; for(i=0;i…… 题解列表 2017年12月12日 1 点赞 0 评论 793 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[100]; gets(str); int n= str…… 题解列表 2017年12月12日 0 点赞 0 评论 1055 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int arr[3]; for(int i=0; i<3; i++) { scanf("%d",&arr[i]…… 题解列表 2017年12月12日 0 点赞 0 评论 661 浏览 评分:0.0