gameloft 笔试题目是英文的,前面全部是理论的,最后两道是编程题目。12345最后两道编程题目 其实还算简单:#include #include #include std::string itoa(int number){ char nstr[15]; sprintf(nstr,"%d",nu...
分类:
Web程序 时间:
2014-08-15 21:06:29
阅读次数:
266
一、使用atoi说明:itoa(intvalue,char*string,intradix);第一个参数:你要转化的int;第二个参数:转化后的char*;第三个参数:你要转化的进制;举例: 1 //------------------------------------- 2 //功能:C++ i...
分类:
编程语言 时间:
2014-08-13 21:54:47
阅读次数:
252
C语言提供了几个标准库函数,能够将随意类型(整型、长整型、浮点型等)的数字转换为字符串。下面是用itoa()函数将整数转 换为字符串的一个样例: # include # include void main (void) { int num = 100; char str[25]; itoa(nu.....
分类:
编程语言 时间:
2014-08-12 00:12:23
阅读次数:
259
Data Structures
1. Integer
– find number of 1s
– next largest smaller
– smallest larger number
– determine if is palindrom
– itoa, atoi
– add 2 numbers w/...
分类:
其他好文 时间:
2014-08-05 15:50:40
阅读次数:
408
#pragma once
#include <iostream>
#include <string>
using namespace std;
//itoa
//int ==> string
//10进制
string itoa(int nNum)
{
int nSize = 128;
char* pStr = new char[nSize];
memset(pStr,0,nS...
分类:
其他好文 时间:
2014-07-25 00:10:54
阅读次数:
251
自己在写程序的时候经常用到保存大量的图片,从而对其编号,所以要把整型转换成字符型。通常自己定义string,而字符使用char[],把整形转换成char类型,然后和string类型相加,但是在VS2012中遇到了The POSIX name for this item is deprecated. ...
分类:
其他好文 时间:
2014-07-18 19:33:53
阅读次数:
235
1. itoaitoa是广泛应用的非标准c语言扩展函数,头文件为 #icnludechar* itoa(int value,char* string,int radix);#include#includeusing namespace std;int main(){ int i=15; char s...
分类:
其他好文 时间:
2014-07-16 21:28:56
阅读次数:
196
源程序:
#include
#include
using namespace std;
int main()
{
int n;char buffer[6];
int count=0;
int len;
cin>>n;
for(int i=1;i<=n;i++)
{
if((i%7)==0)count++;
else
{
itoa(i,buffer,10);
...
分类:
其他好文 时间:
2014-06-30 20:16:38
阅读次数:
246
如果自己写函数,不使用itoa怎么判断呢? 我们用通常的办法,对数字进行每位的除商,得到后与字符'0'相加。 flag = 0; for(i=0;i 2 #include 3 //蔡健雅 双栖动物 4 int myitoa(int num,char *str...
分类:
其他好文 时间:
2014-06-24 09:35:42
阅读次数:
179
#include using namespace std;int main(){#if 1
int num = 12345; char str[25];//不要写成char*,因为没有分配空间 itoa(num, str, 10);//10进制字符串
printf("num ...
分类:
其他好文 时间:
2014-06-07 03:32:09
阅读次数:
215