CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - string to int

搜索资源列表

  1. HexStrToInt

    0下载:
  2. 函数 long StrToData(CString strData,int jz) 功能:字符串转为正整数值 [字符串可为2-16]任意进制数值字符串 返回:长整型数值 参数:strData 为将要转换的字符串 参数:jz 为字符串的进制 如: CString s s=\"FFA6\" long data=StrToData(s,16) 则:data的值为:65446 用法:将StrToData.h和StrToData.cpp复制加入到
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:12151
    • 提供者:张海良
  1. 2-16进制正整数字符串转为数值11

    0下载:
  2. 函数 long StrToData(CString strData,int jz) 功能:字符串转为正整数值 [字符串可为2-16]任意进制数值字符串 返回:长整型数值 参数:strData 为将要转换的字符串 参数:jz 为字符串的进制 如: CString s s=\"FFA6\" long data=StrToData(s,16) 则:data的值为:65446 用法:将StrToData.h和StrToData.cpp复制加入到您的工程里,在需要调用的函数中      加入#includ
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:13032
    • 提供者:梁志洪
  1. float_char_int_string.rar

    0下载:
  2. 各种基本数据类型转换源程序。 本程序涉及到的数据类型有:float, int , char, string.,A variety of basic data type conversion source. This procedure involves the data types are: float, int, char, string.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:108270
    • 提供者:Steno
  1. nk=m

    0下载:
  2. 给定k个正整数,用算术运算符+,-,*,/将这k个正整数连接起来,使最终的得数恰为m。完成 string Caculate(int[] k, int m)方法,它接受k和m,返回连接的字符串(比如”1*2+5”)使其恰好等于m 。如果没有这样的连接,则返回为空字符串”” 注:此算法得出的结果所有的运算顺序都是从左到右,而没有+-*/的优先级-Given a positive integer k, using the arithmetic operator 2B !,-,*,/ this po
  3. 所属分类:CSharp

    • 发布日期:2017-03-26
    • 文件大小:1109
    • 提供者:吕蕾钧
  1. string_strutil

    0下载:
  2. std::string并没有提供所有需要方法。所以,需要用STL提供了算法库、字符串流以及现存的std::string的方法来实现它们。 ※ 将字符串转换为大写/小写 ※ 去掉字符串两端的空格 ※ 忽略大小写比较字符串 ※ StartsWith和EndsWith ※ 从字符串解析出int和bool等类型的值 ※ 将各种数值类型转换成字符串(toString) ※ 拆分字符串和Tokenizer-std:: string does not provide all the
  3. 所属分类:Other systems

    • 发布日期:2017-03-21
    • 文件大小:3600
    • 提供者:方启
  1. NumberTransfer

    0下载:
  2. Use this Program to Transfer number from string to int
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:492412
    • 提供者:Figer
  1. int-to-string

    0下载:
  2. int to string;int t o string;int t o string;int t o string;int t o string;int t o string;int to string;-int to string;
  3. 所属分类:Console

    • 发布日期:2017-03-29
    • 文件大小:1885
    • 提供者:shede223
  1. Dictionary_Search

    0下载:
  2. 有名的词典查询 自动生成10000个单词然后找他的类似词。。。 -//Dictionary #include <iostream> #include <fstream> #include <string> #include <time.h> #define maxsize 10000000 #define exp_n 10000 using namespace std string word[maxs
  3. 所属分类:File Operate

    • 发布日期:2017-04-10
    • 文件大小:1133155
    • 提供者:秘密
  1. stack-to-queue

    0下载:
  2. 用二个顺序存储结构的栈,通过这二个栈的相关运算实现队列的以下功能。 Queue() //构造函数 bool empty() //返回队列是否已空 bool full() //返回队列是否已满 int serve() //出队列,成功返回0,否则返回-1 int append(const string &item) //item进队列,成功返回0,否则返回-1 int retrieve(string &item) const //将队列头的值赋给item,成功返
  3. 所属分类:CSharp

    • 发布日期:2017-03-30
    • 文件大小:1190
    • 提供者:一二三
  1. Const1

    0下载:
  2. GradeBook(String,const int[]) 中const去掉对函数体的影响;-GradeBook (String, const int []) in the const to remove the influence of the function body
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:906423
    • 提供者:
  1. word

    0下载:
  2. Cstring转char、string、int等数据类型的方法-types Cstring turn to char, string, int data
  3. 所属分类:CSharp

    • 发布日期:2017-11-18
    • 文件大小:12602
    • 提供者:蔡曙光
  1. 3

    0下载:
  2. 描述: 设计单链表类,并基于单链表类实现栈类和队列类: (1)设计学生信息类StudentRecord,要求包含公有数据成员:string stuName和int stuNo,设计用于输出学生信息的公有成员函数:void print,输出格式为:Name: stuName, Number: stuNo。 (2)设计学生链表的结点类StudentNode,要求包含公有数据成员:StudentRecord data和StudentNode *next。 (3)设计学生链
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-11
    • 文件大小:1037
    • 提供者:zhang
  1. vcnetstringdemos

    0下载:
  2. 收集了一些VC.NET字符串的操作演示实例源码,比如对字符串进行连接,字符串比较,从字符串中存取字符,如何计算一个字符串的大小,如何使用VC快速格式化一个字符串,如何将Cstring类型的字符串转换成int型和float型,如何让字符串赋值给字符指针等技巧,很小的例子,都挺简单,适合初学者。-Collected some VC.NET string operation and demonstration source code examples, such as the connection s
  3. 所属分类:.net

    • 发布日期:2017-04-08
    • 文件大小:43412
    • 提供者:崔凤磊
  1. zhuanhuan

    0下载:
  2. 实现字符串string向int整型转换,还可以向double、float型转换-For string string to int int conversion, but also can double, float type conversion
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:13685
    • 提供者:asd
  1. VC.NETstringdemo

    0下载:
  2. 收集了一些VC.NET字符串的操作演示实例源码,比如对字符串进行连接,字符串比较,从字符串中存取字符,如何计算一个字符串的大小,如何使用VC快速格式化一个字符串,如何将Cstring类型的字符串转换成int型和float型,如何让字符串赋值给字符指针等技巧,很小的例子,都挺简单,适合初学者-Collected VC.NET string operation demonstrates some examples of source code, such as connection strings,
  3. 所属分类:CSharp

    • 发布日期:2017-04-25
    • 文件大小:42904
    • 提供者:apudn52
  1. int-convert-string-by-C-Language

    0下载:
  2. C语言实现,自定义两个函数,实现int型和字符串String型互换:把字符串转化成double浮点型,把int型转化为String型,在网络通信中用得到,在VC环境下已经验证-by using C Language,define two functions and realize below function:we can convert int to string ,and also string to int ,these fucntion has been tested.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:799
    • 提供者:王茂春
  1. strtoint

    0下载:
  2. 实现了字符串转整形的功能,修改了bug,对于溢出操作也做了处理,空格以及其他非法字符都做了处理。-string to int
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1448
    • 提供者:
  1. ep3

    9下载:
  2. 北京理工大学面向对象程序设计第三次上机习题答案~-1. Define MyString class with demands as follows: 1.1 MyString can save any string 1.2 Overload operator+ to append string to another one 1.3 Define Find function to locate the position of searching
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:3507
    • 提供者:刘晶晶
  1. readfile.tar

    0下载:
  2. read file transfer string to int
  3. 所属分类:File Operate

    • 发布日期:2017-12-18
    • 文件大小:4096
    • 提供者:zzj
  1. Fknctiwn

    0下载:
  2. 函数 long StrToData(CString strData,int jz) 功能:字符串转为正整数值-Function long StrToData (cstrings strData, int jz) functions: string to positive integer value
  3. 所属分类:Windows Develop

    • 发布日期:2017-12-16
    • 文件大小:9216
    • 提供者:koluqion
« 12 3 »
搜珍网 www.dssz.com