zoukankan      html  css  js  c++  java
  • c各种打印集合

    Size   Prefixes   for   scanf   and   wscanf   Format-Type   Specifiers   
    To   Specify   Use   Prefix   With   Type   Specifier   
    double   l   e,   E,   f,   g,   or   G   
    long   double   (same   as   double)   L   e,   E,   f,   g,   or   G   
    long   int   l   d,   i,   o,   x,   or   X   
    long   unsigned   int   l   u   
    short   int   h   d,   i,   o,   x,   or   X   
    short   unsigned   int   h   u   
    __int64   I64   d,   i,   o,   u,   x,   or   X   
    Single-byte   character   with   scanf   h   c   or   C   
    Single-byte   character   with   wscanf   h   c   or   C   
    Wide   character   with   scanf   l   c   or   C   
    Wide   character   with   wscanf   l   c,   or   C   
    Single-byte   –   character   string   with   scanf   h   s   or   S   
    Single-byte   –   character   string   with   wscanf   h   s   or   S   
    Wide-character   string   with   scanf   l   s   or   S   
    Wide-character   string   with   wscanf   l   s   or   S   


    Following   are   examples   of   the   use   of   h   and   l   with   scanf   functions   and   wscanf   functions: 

    scanf(   "%ls ",   &x   );         //   Read   a   wide-character   string 
    wscanf(   "%lC ",   &x   );         //   Read   a   single-byte   character 

  • 相关阅读:
    前端PHP入门-030-文件函数API
    前端PHP入门-029-文件操作-掌握级别
    前端PHP入门-028-文件操作-掌握级别
    前端PHP入门-027-数组常用函数-掌握级别
    SVM 支持向量机
    java 设计模式
    Linear Regreesion
    java 小结1(static ,final,泛型)
    概念介绍(机器学习)
    集成学习 概念介绍
  • 原文地址:https://www.cnblogs.com/hcu5555/p/2668539.html
Copyright © 2011-2022 走看看