题解列表

筛选

容易理解的C语言代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {     int a, b, c, n;     scanf("%d", &n);     a =……

数学的图表

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,i,sum = 0;    while(scanf("%d",&n)!=EOF)    {  ……

身份证号码升级-题解(C++代码)

摘要:解题思路:字符串注意事项:字符串和数字的转换参考代码:#include <iostream> #include <cstring> using namespace std; char s1[20……

二级C语言-计算素数和 注意处理数字1

摘要:        解题思路:遍历  2~x-1  检查isprime?遍历 m~n 求和处理数字 1 注意事项:     数字 1既不质数也不是合数。参考代码:#include<stdio.h>int ……

链表的基本操作(C语言代码)

摘要:解题思路:注意事项:main函数结束及删除节点时,删除malloc申请的堆空间,避免内存泄漏参考代码:#include <stdio.h> #include <stdlib.h> /** 链表……

水仙花数的判断

摘要:采用for循环语句。 #include int main() { int a,b,c,d,ji,i; for(i=100;i……

运用string巧妙解决

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    string s;    while(cin>>s)    { ……