摘要:
#include <stdio.h> #define MAXN 10 void swap(int *px, int *py); void bubble(int a[], int n); int main(void){ int n, a[MAXN]; int i; printf("Enter n(n< 阅读全文
摘要:
最近一直在学习C语言,大学的时候没好好学,想不到10多年之后,我又开始学起来了,话说C语言确实相当有意思,至少比Python有意思。 我就写一下C语言内置的scanf函数。我的理解这是一个格式化输入的函数,用于读取信息并将信息写入指定的地址内。 常规的用法 #include <stdio.h> in 阅读全文