文章列表

筛选

c语言文件操作

摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> //交换字母的代码  void swap(char *s,int i,int j……

一个小问题

摘要:大家好,本人问一下,有个小问题,问一下在能不能定义个未知元素个数的整数数组,然后输入由自己输入的数据(整数个数由自己),然后在根据内存空间(sizeof)求出有几个数据。。。。(c语言)求大佬。……

cs小白第一个博客?

摘要:作为一名刚上大一的cs学生,在上大学前从未接触过编程。说到这里还是有点小小的遗憾,因为高中勇气不足没能尝试学信竞。不过没有关系,现在完全不算晚,我也不必看着他人的样子而隐隐担忧,走出自己的节奏就好。在……

大数斐波那契数列

摘要:原题为洛谷p2437利用string的加法特性f[i]=f[i-1]+f[i-2]#include<bits/stdc++.h> using namespace std; string fb[10……

幸运儿的单链表算法

摘要:#include<stdio.h>#include<malloc.h>#define MAX 50typedef struct test {    struct test* next;    int ……

用math.h处理立方运算

摘要:#include<stdio.h> #include<math.h> int main(void) { int number, a, b, c; for (number  = 100; ……