c4droid代码手册里面包含了用户常用的所有代码内容,并且以大全的形式进行展现,还有诸多实战项目的源码可以观看学习,可离线阅读其中的内容,还有部分内容托管到了github上,对于刚刚接触c4droid这款软件的用户而言,可以快速度过学习期,成为一名合格的c++软件开发者。
软件功能
内含很多c/c++代码。
代码均在c4droid gcc/g++编译器编译通过。
c4droid代码手册收录大量代码实例,帮你摆脱平台带来的困惑!...
注意事项
c4droid是手机c/c++编程神器,但是有的代码略有差异。
常见问题
1.为什么连最简单的helloworld都不能编译?
/*试试这个*/#include<stdio.h> int main() { printf("hello world"); return 0; }
2.不能编译C++?
试试这个*/# include< iostream> usingnamespace std; int main(( cout<< helloworld", return 0: 1
3.没有 windows. h头文件?
这里是手机,只支持c语言标准库头文件。不过像 sleep; systen0函数有其它头文件
4.能进行文件操作吗?路径是什么?
#include<stdio. h> int main(( FILE*fp; charch=c4 droid教程";fp= fopen(/ sdcard/c4droid. txt W+): fputs(ch, fp); fclose(fp);printf已写入文件"); return0
实例代码
// Rand 3
//10的poa次方
int poww(int poa)
{
int poi, gett = 1;
if (poa == 0)
return 1;
for (poi = 1; poi <= poa; poi++)
{
gett = 10 * gett;
}
return gett;
}
//字符串转数字
int cton(char snum[])
{
int rnnum, arrr;
char snumm[] = "0123456789";
int ctoni, ctonii;
for (ctoni = 0; ctoni <= strlen(snum) - 1; ctoni++)
for (ctonii = 0; ctonii <= strlen(snumm) - 1; ctonii++)
{
if (snum[ctoni] == snumm[ctonii])
{
arrr = ctonii * poww(strlen(snum) - ctoni - 1);
rnnum += arrr;
}
}
return rnnum;
}
//随机数表(外部函数可修改)
char randf[] =
"4685680458221184544233546745840946997782821802983845272444424956688465640137820349283465268154379264386928649572168296084328560286273427586222857645183495462134797565562581885645872594696424824646461558359255465256558828570804621358809810422543892828456825183498848994077531827428";
int isntfirst, nowh;
//随机函数
int randd(int min, int max)
{
char wait3[10];
srand((int)time(NULL));
int nowhh = rand() % strlen(randf) + 1;
if (!isntfirst)
{
no
特别说明
软件信息
- 包名:cn.atd3.ccode
- MD5:ED2E2AA6B9FBDA9A001F4AB5CFAE73CF