题解列表
1057编写分段函数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; float y; scanf("%d",&x); { if(x<1) ……
敲简单C语言代码!!!
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int m,l,i,c[10086],j,k=0; scanf ("%d %d",&l,&m); ……
二级C语言-分段函数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,f; scanf("%lf",&x); if……
二级C语言-温度转换
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int ctof(int c){ int f; f= 32 + c* 9/5; ret……
二级C语言-寻找矩阵最值
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,a[100][100],i,j,max,b=0,c=0; s……
二级C语言-成绩归类
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i=0, j=0, k=0; int score; s……
二级C语言-阶乘公式求职
摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int n){ int i; double k=1; for(i=1;i<=n;i++) ……