普普通通一个人
发布时间:2014-02-20 22:39:15
点击(此处)折叠或打开#include #include int main(){ //*a 相当于a[5],里面存了5个元素,分别是‘j’、‘k’、‘l’、‘m’、‘\0’ char *a = "jklm.........【阅读全文】
发布时间:2014-02-20 21:50:22
点击(此处)折叠或打开#include int main(){ //初始化一个整型数组,最后一个会以0补齐 int a[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; //.........【阅读全文】
发布时间:2014-02-20 17:10:12
点击(此处)折叠或打开/* 加密解密程序 *//* 加密:使用该位数字+7,再对10取模,来替代该位,然后 1、3位互换,2、4位互换 *//* 解密:通过输入加密后的数字,显示出加密前的样子 */#include <stdio.h>.........【阅读全文】
发布时间:2014-02-20 14:48:34
点击(此处)折叠或打开#include <stdio.h>#define PI 3.14159void diameter(float);void circumference(float);void area(float);int main(){ float radius;.........【阅读全文】
发布时间:2014-02-20 14:36:36
点击(此处)折叠或打开#include <stdio.h>#include <string.h>#include <math.h>int main(){ int i; float j; double k.........【阅读全文】