C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h>struct st //结构体类型定义, { char xuehao[20]; char xingming[20]; int a1; int a2; i…… 题解列表 2017年08月22日 5 点赞 1 评论 1281 浏览 评分:0.0
【偶数求和】 (C++代码) 摘要:#include<iostream> #include<cstring> #include<cstdio> using namespace std; int main(void) { …… 题解列表 2017年08月22日 0 点赞 0 评论 1352 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路: 看了很多人的题解之后,我觉得解决题目不应仅能通过示例的测试,如大家所见,示例中是五位数,部分人的代码仅能通过五位数的测试,我的代码是可以通过五位数以内的所有数的!欢迎大家指教…… 题解列表 2017年08月22日 1 点赞 0 评论 1777 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ char str1[100] , str2[100]; scanf("%s%s" , str1 , str2…… 题解列表 2017年08月22日 0 点赞 0 评论 919 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>struct student{char id[20];char name[20];int a;int b;int c…… 题解列表 2017年08月22日 0 点赞 0 评论 1721 浏览 评分:0.0
数组输出 (C语言代码) 摘要:解题思路: 题不难 注意事项: 参考代码:#include<stdio.h>#include<math.h>int main(){ int a[3][4]; int i,j; for(i=0…… 题解列表 2017年08月22日 0 点赞 0 评论 1158 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)==2) { …… 题解列表 2017年08月23日 0 点赞 0 评论 846 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路: 使用数组注意事项: 注意输出的时候要用%c参考代码: #include<stdio.h>int main(){ char a[]={'C','h',&#…… 题解列表 2017年08月24日 5 点赞 1 评论 923 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h>int main(){ int a[10]; int i,n=0,s=0; for(i=0;i<10;i++) { scanf("%d",&a[i]); …… 题解列表 2017年08月24日 0 点赞 0 评论 1156 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.3 (Java代码) 摘要:import java.util.Scanner; //抄别人的 public class Main { public static void Temp1(int a){ …… 题解列表 2017年08月24日 0 点赞 0 评论 2068 浏览 评分:0.0