#include#include#includeusing namespace std;int main(){int n,i;char s[100];char s1[100],s2[100],s3[100];scanf("%d%*c",&n);for(i=1;i#include#includeusi...
分类:
其他好文 时间:
2014-08-05 15:41:19
阅读次数:
301
字典树的应用题目,虽然照模板就能打出来,但是看着学长的代码,学会了sscanf的用法,sscanf(str,"%s%s",a,b)把str分成a和b两个字符串,分隔符为空格#include#include#include#include#includeusing namespace std;int ...
分类:
其他好文 时间:
2014-08-04 17:07:47
阅读次数:
173
#include int main() { char str[10002]; char a[1002],b[1002]; while(gets(str)) { sscanf(str,"%s %s",a,b); printf("%s\n",a); ...
分类:
其他好文 时间:
2014-08-02 23:16:24
阅读次数:
314
在我的学习过程中,从文件读取数据是一件很麻烦的事,所幸有sscanf()函数。 C语言函数sscanf()的用法sscanf() - 从一个字符串中读进与指定格式相符的数据. 函数原型: int sscanf( string str, string fmt, mixed var1, mixed...
分类:
编程语言 时间:
2014-08-02 23:14:24
阅读次数:
325
此文所有的实验都是基于下面的程序:char str[10];for (int i = 0; i using namespace std;int main(){ char str[10]; for (int i = 0; i #include #include static void ss...
分类:
其他好文 时间:
2014-07-29 12:36:07
阅读次数:
244
根据IP和Mask获得子网地址unsigned int IPToUInt(const char *pIp){ int a,b,c,d; unsigned int addr=0; if( sscanf(pIp,"%d.%d.%d.%d",&a,&b,&c,&d)!=4 ) ...
分类:
其他好文 时间:
2014-07-26 00:20:16
阅读次数:
339
SSCANF用法:(继qsort,bsearch,strchr后发现的又一好使的函数)sscanf与scanf类似,都是用于输入的,只是后者以键盘(stdin)为输入源,前者以固定字符串为输入源。例子: 1. 常见用法。char buf[512] ;sscanf("123456 ", "%s", b...
分类:
其他好文 时间:
2014-07-21 10:04:37
阅读次数:
302
SSCANF用法:(继qsort,bsearch,strchr后发现的又一好使的函数)sscanf与scanf类似,都是用于输入的,只是后者以键盘(stdin)为输入源,前者以固定字符串为输入源。例子: 1. 常见用法。char buf[512] ;sscanf("123456 ", "%s", b...
分类:
其他好文 时间:
2014-07-18 23:29:14
阅读次数:
217
sscanf和sprintf是scanf和printf家族用法sscanf和sprintf是scanf和printf家族的一对成员,用于处理和分析字符串非常强大得两个函数头文件 stdio.h原型int sscanf(const char *buffer,const char *format,......
分类:
其他好文 时间:
2014-07-16 22:59:38
阅读次数:
200
水题。。求任意时刻时针和分针的夹角,其结果在0°到180°之间。这里又一次用到了sscanf()函数,确实很方便。思路:我们分别求出时针和分针转过的角度,然后大的减小的,如果结果ans大于180,那么ans = 360 - ans。ClockHandsThe medieval interest in...
分类:
其他好文 时间:
2014-07-01 09:19:30
阅读次数:
232