C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路: 看了很多人的题解之后,我觉得解决题目不应仅能通过示例的测试,如大家所见,示例中是五位数,部分人的代码仅能通过五位数的测试,我的代码是可以通过五位数以内的所有数的!欢迎大家指教…… 题解列表 2017年08月22日 1 点赞 0 评论 1940 浏览 评分: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 评论 992 浏览 评分: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 评论 1865 浏览 评分: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 评论 1226 浏览 评分: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 评论 903 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路: 使用数组注意事项: 注意输出的时候要用%c参考代码: #include<stdio.h>int main(){ char a[]={'C','h',&#…… 题解列表 2017年08月24日 5 点赞 1 评论 976 浏览 评分: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 评论 1227 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.3 (Java代码) 摘要:import java.util.Scanner; //抄别人的 public class Main { public static void Temp1(int a){ …… 题解列表 2017年08月24日 0 点赞 0 评论 2200 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.4 (Java代码) 摘要:import java.util.Scanner; //抄别人的 public class Main{ public static void main(String[] age){ …… 题解列表 2017年08月24日 0 点赞 0 评论 1341 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h>int main(){ int m,n,i,s=0; int isprime(int x); scanf("%d %d",&m,&n); for(i=m;i<=…… 题解列表 2017年08月24日 1 点赞 0 评论 1413 浏览 评分:0.0