码迷,mamicode.com
首页 >  
搜索关键字:printf bc    ( 16964个结果
char*,string,float,int 转换
char* 转 float:double atof (const char* str);/* atof example: sine calculator */#include /* printf, fgets */#include /* atof */#include ...
分类:其他好文   时间:2014-04-30 13:44:13    阅读次数:410
HDU1720 A+B Coming (16进制加法)
16进制加法1 #include2 int main()3 {4 int a,b;5 while(scanf("%x %x",&a,&b)!=EOF)6 {7 printf("%d\n",a+b); 8 } 9 }
分类:其他好文   时间:2014-04-30 02:19:33    阅读次数:357
c 函数及指针学习 5
聚合数据类型能够同时存储超过一个的单独数据。 c语言提供了数组和结构体。1.1234567891011121314#include #include void main(){struct {int a;}x,*b;int c[2]={1,2};x.a=1;b=c;printf("%d \n",b[1...
分类:其他好文   时间:2014-04-29 17:05:12    阅读次数:395
C函数及指针学习3
12345678910111213#include void main(){char *sa="sdhshdh";char *sb="cdehhhhsdssssd";printf("%d , %d \n",strlen(sa),strlen(sb));if(strlen(sa)-strlen(sb)...
分类:其他好文   时间:2014-04-28 15:27:16    阅读次数:473
16964条   上一页 1 ... 1695 1696 1697
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!