摘要: //F=P*(1+i)^N//F=A((1+i)^N-1)/i//I=P*i*N#include<stdio.h>#include<math.h>int main(){double F,P,i,I;//F:复利终值 P:本金 i:利率 I:利息int N;//利率获取时间的整数倍int M;//复利 阅读全文
posted @ 2016-03-17 18:41 48彭宏亮 阅读(187) 评论(1) 推荐(0) 编辑
摘要: 周次 学习时间 新编写代码行数 博客量(篇) 学到知识点 第一周 2 0 1 1.软件工程的概念 2.对IT行业进行了分析 第二周 3 50 1 学会了如何将代码上传到GITHUB 第三周 3 100 1 从复利计算中学到很多以前不懂不理解的代码 第四周 3 20 1 阅读《软件工程》对单元测试、团 阅读全文
posted @ 2016-03-09 09:20 48彭宏亮 阅读(269) 评论(2) 推荐(0) 编辑
摘要: 阅读以下文章 http://www.thea.cn/news/terminal/9/9389.html http://www.shzhidao.cn/system/2015/09/22/010261080.shtml 说说你的感想。 在这个IT行业,这个就业压力逐渐增长的时代,拥有一技之长还不行,还 阅读全文
posted @ 2016-03-02 09:25 48彭宏亮 阅读(150) 评论(1) 推荐(0) 编辑
摘要: #include#include#include#define READ(ch) ch=getc(fp) /*宏:READ(ch)*/char ch; /*声明为全局变量*/int right=0;FILE *fp;struct struCH{char ch;struct struCH *next;... 阅读全文
posted @ 2015-12-31 16:02 48彭宏亮 阅读(166) 评论(0) 推荐(0) 编辑
摘要: #include#include#includeint main(){char p[30][30];char q[30][30];int line=0;int n;int i,j;int count=0;int k,t=0;int flag=0;int l,m=0;char VN[30]={'\0'... 阅读全文
posted @ 2015-12-11 19:38 48彭宏亮 阅读(168) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/gzh13692021053/p/4942338.htmlhttp://www.cnblogs.com/gzh13692021053/p/4921258.htmlhttp://www.cnblogs.com/maijinjun/p/4943360.htm... 阅读全文
posted @ 2015-11-12 15:09 48彭宏亮 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-11-12 15:00 48彭宏亮 阅读(208) 评论(7) 推荐(0) 编辑
摘要: program à external_declaration | program external_declaration -> | external_declaration à function_definition | declaration -> | function_definiti... 阅读全文
posted @ 2015-10-29 17:39 48彭宏亮 阅读(347) 评论(2) 推荐(0) 编辑
摘要: #include //包含库所用的某些宏和变量#include //包含库#include //包含字符串处理库#define _KEY_WORD_END "waiting for your expanding" //定义关键字结束标志typedef struct{ int typenum; cha... 阅读全文
posted @ 2015-10-22 15:55 48彭宏亮 阅读(284) 评论(2) 推荐(0) 编辑
摘要: 1.编译原理主要学习编译程序构造的原理和基本,内容包括语言和文法的基本知识、词法分析、语法分析、语法制导翻译技术和中间代码的生成,符号表的组织和管理,存储管理,代码优化和具体代码的生成等2.了解和认识关于编译器方面的产生原理和技术问题,然后自己能够制作编译器。得以学习大量优美的算法,并得以欣赏理论和... 阅读全文
posted @ 2015-09-10 15:41 48彭宏亮 阅读(162) 评论(0) 推荐(0) 编辑