lenaben

2017年7月10日

C语言 AscII ,GB3213,Ansi

摘要: 1. # include<stdio.h> # include<stdlib.h> void main(){ char l_c[ ]={'A', 'B','C‘,’D‘,0x45}; //0x45代表 E int length= sizeof(l_c)/sizeof(char); for(size_ 阅读全文

posted @ 2017-07-10 22:43 lenaben 阅读(126) 评论(0) 推荐(0)

C语言循环

摘要: 1. #include<stdio.h> #include<stdlib.h> void main(){ int l_count=1; mark: printf("第%d次,我热爱编程\n",l_count) l_count++; if(l_count<6){ go to mark; } syste 阅读全文

posted @ 2017-07-10 21:59 lenaben 阅读(116) 评论(0) 推荐(0)

导航