C语言
CSpotato
to be SoTA
展开
-
C语言字符串与数字相互转换
原文地址:http://www.cnblogs.com/sddai/p/5774121.html 在C/C++语言中没有专门的字符串变量,通常用字符数组来存放字符串。字符串是以“\0”作为结束符。C/C++提供了丰富的字符串处理函数,下面列出了几个最常用的函数。 ● 字符串输出函数puts。 ● 字符串输出函数gets。 ● 字符串连接函数strcat。 ● 字符串复制函数strcpy。 ...转载 2018-03-13 15:34:32 · 435 阅读 · 0 评论 -
C语言sort函数如何使用
https://zhidao.baidu.com/question/1754076342544723828.htmlc语言和c++中,对于sort函数的使用,不同。c语言中没有预置的sort函数,如果在c语言中,要调用sort函数,就需要自定义一个用于排序的函数,或者使用c语言自有的qsort函数,其头文件为stdlib.h。1、自定义排序功能如下,为整数型从小到大排序[html] view pl...转载 2018-03-13 15:37:13 · 2805 阅读 · 0 评论 -
00-自测4. Have Fun with Numbers
Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 246913578, which happens to be another 9-digit number con...转载 2018-03-13 15:41:57 · 329 阅读 · 0 评论