码迷,mamicode.com
首页 > 其他好文 > 详细

sscanf()函数。

时间:2014-08-02 23:16:24      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   2014   art   

bubuko.com,布布扣
#include <stdio.h>
int main() {

    char str[10002];
    char a[1002],b[1002];
    while(gets(str)) 
    {  
     sscanf(str,"%s %s",a,b);
     printf("%s\n",a);
     printf("%s\n",b);
    }
}
View Code

#include <stdio.h>

int main()

{

 char str[10002];

 char a[1002],b[1002];  

while(gets(str))

 {   

             sscanf(str,"%s %s",a,b);  

printf("%s\n",a);

  printf("%s\n",b);

 }

}

 

bubuko.com,布布扣

 

 

 

bubuko.com,布布扣
#include <stdio.h>
int main() {

    char str[10002];
    char a[1002],b[1002],c[1002];
    while(gets(str)) 
    {  
     sscanf(str,"%[0-9]%[.]%[0-9]",a,b,c);
     printf("%s\n",a);
     printf("%s\n",b);
     printf("%s\n",c);
    }
}
View Code

 

#include <stdio.h>

int main()

{

 char str[10002];  

char a[1002],b[1002],c[1002];  

while(gets(str))

   {

        sscanf(str,"%[0-9]%[.]%[0-9]",a,b,c);

       printf("%s\n",a);

     printf("%s\n",b);

      printf("%s\n",c);

   }

}

bubuko.com,布布扣

 

bubuko.com,布布扣

 

 

bubuko.com,布布扣

 

 

 

 

 

 

 

 

 

 

 

 

 

bubuko.com,布布扣
#include <stdio.h>
#include<string>
int main() {

    char str[10002];
    char a[1002],b[1002],c[1002];
    while(gets(str)) 
    {  
     sscanf(str,"%[0-9]%*[.]%[0-9]",a,b,c);
     printf("%s\n",a);
     printf("%s\n",b);
     printf("%s\n",strlen(c));
    }
}
View Code

 

 

#include <stdio.h>

#include<string>

int main() {

 char str[10002];

 char a[1002],b[1002],c[1002];

 while(gets(str))

 { 

  sscanf(str,"%[0-9]%*[.]%[0-9]",a,b,c);

  printf("%s\n",a);  

printf("%s\n",b);  

printf("%s\n",strlen(c));  

}

}

bubuko.com,布布扣bubuko.com,布布扣

 

 

bubuko.com,布布扣

 

sscanf()函数。,布布扣,bubuko.com

sscanf()函数。

标签:style   blog   http   color   os   io   2014   art   

原文地址:http://www.cnblogs.com/2014acm/p/3887527.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!