题解列表

筛选

C语言程序设计教程(第三版)课后习题1.5 (C语言代码)

解题思路:主要是验证printf()函数的使用,以及\n的换行使用。仔细分析题目可以知道一共分三行,也就是使用了三次printf()函数,同时,\n换行也使用了三次。注意事项:*一共有26个,仔细的数下,别给数错了就行。还有就是千别忘了头文件的书写。
优质题解

可AC (C语言代码)

摘要:解题思路: 注意事项: 参考代码: #include<stdlib.h> #include<stdio.h> typedef struct node { int real;……

可AC (C语言代码)

摘要:解题思路: 注意事项: 参考代码: #include<stdlib.h> #include<stdio.h> typedef struct node { int real;……

送分题素数 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int ii(int i){ for(int j=2;j<i;j++……

第几天 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int n,i,j,m=0; int a[]……

不容易系列 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int f(int n);int f(int n) {    int i, a=3;    for(i=0; i<n; i++) { ……