陈教主的三角形 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a[100],b[100],c[100],i,j=0; while(~scanf("%d %…… 题解列表 2017年10月22日 1 点赞 0 评论 1918 浏览 评分:8.0
Quadratic Equation (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main(){ double a,b,c; scanf("%lf %lf %lf…… 题解列表 2017年10月22日 1 点赞 3 评论 1316 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 逆序输出 */ #include<stdio.h> #define N 10 void func(int arr[]) { int i; …… 题解列表 2017年10月26日 0 点赞 0 评论 1617 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:so easy注意事项:参考代码:#include<stdio.h>int main(){ int x;char a; scanf("%d",&x); if(x<60) a…… 题解列表 2017年10月28日 0 点赞 0 评论 1121 浏览 评分:8.0
C二级辅导-公约公倍 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max,min; int i=1; scanf("%d%d",&a,&b); …… 题解列表 2017年11月02日 7 点赞 1 评论 1599 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char c[105],d[105],e[105]; cha…… 题解列表 2017年11月06日 1 点赞 1 评论 2085 浏览 评分:8.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路: 先利用scanf会自动识别空格,把10个数字一个一个存进数组a; → 再将数组每一个数字加起来,存给sum; → 再用sum/10得出平均数average; → 再利用for…… 题解列表 2019年02月07日 0 点赞 0 评论 1988 浏览 评分:8.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:注意事项:1.英文单词的书写2.输出格式参考代码:#include<iostream> using namespace std; void exchange2(int d) { s…… 题解列表 2018年04月09日 6 点赞 1 评论 1722 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题7.4 (C语言代码) 摘要:#include <stdio.h> int main(void) { int a[10]; int i, j, n; for (i = 0; i < 9; i++) scanf(…… 题解列表 2017年12月14日 119 点赞 10 评论 3511 浏览 评分:8.0
简单的a+b (C语言代码) 摘要:解题思路:看注意,”注意此题是多组测试数据“//注意要求输入多组的两个数’scanf‘函数输入值时,如果a和b都被成功读入,那么scanf的返回值就是2 ;如果只有a被成功读入,返回值为1 ;如果a和…… 题解列表 2017年11月18日 1 点赞 1 评论 549 浏览 评分:8.0