题解列表
字符串正反连接(C语言)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char *fun(char str[]){ char* str1 = str; char* str……
根据判断最大公约数是否为一来判断
摘要:解题思路:我觉得最最最简单的思路了注意事项:参考代码:#include <stdio.h>int main(){ int i = 0; for(i=1;i<=40;i++) { ……
C语言训练-求函数值
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int x){ if(x==1) { return 10; } ……
C语言训练-求具有abcd=(ab+cd)2性质的四位数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a,b,c; for(i=1000;i<=9999;i++) { ……
编写题解 1030: [编程入门]二维数组的转置
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
#define n 3 //定义头文件
int main() {
in……
编写题解 1670: 拆分位数
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h> //定义头文件
int main() {
int i,j,k,l;
……
编写题解 1671: 小九九
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h> //定义头文件
int main() {
int i, j;
for (i ……