题目:大意是在说给定一个ipv6地址的简记形式,让你给它补全输出。
简记的规则大致是把地址中的一部分0去掉,其中还包括一连串的0,此时可用::来代替。
方法:首先记录给定的字符串中的:的个数,让后就能确定::中间要补全的0000的个数,然后对于每个小地址(例如bfd),补全失去的0就好了,这时候可以使用printf输出补0的功能,即:printf("%04s",s);
注意...
分类:
其他好文 时间:
2014-07-22 23:02:33
阅读次数:
313
1.提取字符串2.提取指定长度的字符串3.提取指定字符为止的字符串4.取仅包含指定字符集的字符串5.取到指定字符集为止的字符串#include
int main(){ char str[512]={0}; sscanf("123456","%s",str); printf("str...
分类:
其他好文 时间:
2014-05-12 17:15:19
阅读次数:
322
为了给printf着色方便, 我们可以定义一些宏:view plaincopy to
clipboardprint?#defineNONE"/033[m"#defineRED"/033[0;32;31m"#defineLIGHT_RED"/033[1;31m"#defineGREEN"/033[0;...
分类:
其他好文 时间:
2014-05-10 20:25:43
阅读次数:
305
c语言中的输出操作相对java来说是比较麻烦的,每种数据类型的输出都有各自的占位符;下面是各种数据类型的输出占位符:short/int
: %dint a = 1;printf("这个整数是:%d", a);long: %ld; (long
是int得修饰,不能算是一种单独的数据类型,只是比int多...
分类:
编程语言 时间:
2014-05-06 01:01:14
阅读次数:
377
学习任何语言基础时,两个数值得交换是必须掌握的,下面简绍3中方式(c语言)方法一:利用数学的计算技巧 1 #include 2 int main() 3 { 4
5 int a =10, b = 20; 6 7 printf("交换前a=%d, b=%d\n",...
分类:
编程语言 时间:
2014-05-05 22:11:33
阅读次数:
518
1,指针没有指向一块合法的区域1指针没有初始化12345678910111213#include #include struct aa{char
*pa;char c;}ssa,*ssb;void main(){strcpy(ssa.pa,"abc");printf("%s \n",ssa.pa);...
分类:
其他好文 时间:
2014-05-04 11:38:09
阅读次数:
278
博客:存储系统研究
微博:http://weibo.com/u/2203007022
(1) C语言可变参数
我们可以从C语言的printf得出可变参数的作用,printf函数的原型如下:
int printf ( const char * format, ... );
通过使用可变个数参数,就是传入的参数个数是可变的,如printf需要根...
分类:
编程语言 时间:
2014-05-04 00:24:27
阅读次数:
442
sed‘s/^/\//g‘4行首增加指定字符提取网页中的播放地址:#!/bin/bash
printf"enteryourdir:"
readdir
echo"$dirisxx"
cd$dir
echo`pwd`
forfilein`ls.`
do
if[-d$file];then
echo$file
cd$file
echo`pwd`
tree`pwd`|grepplay|sed‘s/.*//g‘>11
tree`pwd`|grepplay|sed‘s/.*//g..
分类:
其他好文 时间:
2014-05-03 00:53:15
阅读次数:
336
(1)打印字符char c;printf("%c",c);(2)打印整形int
i;printf("%d",i); //有符号十进制数printf("%u",i); //无符号十进制数(3)打印浮点数float
f;printf("%f",f);(4)打印指针int *p;pri...
分类:
其他好文 时间:
2014-05-02 16:13:07
阅读次数:
378
#include #include #include int main(int argc,char
**argv){ FILE *fp_src,*fp_des; char buf[128]; int num; if(argc!=3) {
printf("t...
分类:
其他好文 时间:
2014-05-02 16:06:36
阅读次数:
562