码迷,mamicode.com
首页 >  
搜索关键字:please ensure that a    ( 3733个结果
质因数的求法
质因数分解 /* 求质因数 */ #include #include int main() { int n,a=2; printf("please input n:"); scanf("%d",&n); if(n<=1) { printf("input error!\n"); return -1; } while(a*a < n) { while(n%a==0) ...
分类:其他好文   时间:2014-05-26 05:50:40    阅读次数:279
C语言统计一个字符串中单词的个数
假定每个单词用空格隔开。 例子: 输入:how are you! 输出:3 两种方法: 一: #include #include #define SIZE 20 int main() { char str[SIZE]={'\0'}; int count=0; printf("please input the string\n"); gets(str); put...
分类:编程语言   时间:2014-05-26 03:44:36    阅读次数:284
c语言快速判断一个数是偶数还是奇数
#include int main() { int a; while(1) { printf("please input the number:\n"); scanf("%d",&a); if(a&1) { printf("%d是奇数\n",a); } else { printf("%d是偶数\n",a); } } return 0; }这...
分类:编程语言   时间:2014-05-26 03:36:15    阅读次数:367
CSS3常用功能的写法
随着浏览器的升级,CSS3已经可以投入实际应用了。但是,不同的浏览器有不同的CSS3实现,兼容性是一个大问题。上周的YDN介绍了CSS3 Please网站,该网站总结了一些常用功能的写法。以下就是这些写法的详细介绍。所有代码都经过了Firefox 3.6和IE 8.0的验证,原文的错误之处也已得到改...
分类:Web程序   时间:2014-05-24 09:55:29    阅读次数:311
华为初级——十六进制转换为十进制
描述:写出一个程序,接收一个十六进制的数值字符串,输出该数值的十进制字符串。 知识点:字符串,循环,函数,指针 题目来源:内部整理 练习阶段:初级 运行时间限制:10sec 内存限制:128MByte 输入:输入一个十六进制的数值字符串。 输出该数值的十进制字符串。 样例输入:0xA 样例输出10 温馨提示:华为的系统是不需要有提示信息的。"请输入十六进制数:","please...
分类:其他好文   时间:2014-05-22 08:15:33    阅读次数:337
TI C66x DSP硬件信号量 - 1
In a multicore environment—where system resources must be shared—it is important to control simultaneous accesses to the available resources. To ensure correct system operation, it is necessary to lim...
分类:其他好文   时间:2014-05-22 07:18:54    阅读次数:308
一段小程序理解getchar和putchar
#include "stdafx.h"#include using namespace std;int main(){ char c,d,e,f; printf("please input two characters:\n"); c=getchar(); putchar...
分类:其他好文   时间:2014-05-21 23:46:19    阅读次数:352
TI C66x DSP硬件信号量 - 2
The semaphore module can be used as an arbiter to ensure mutual exclusivity when sharing resources over multiple cores in a multicore device. It provides up to 64 independent semaphores that can be ac...
分类:其他好文   时间:2014-05-21 16:26:59    阅读次数:234
centos上设置时区
[root@localhost ~]# date -R // 查看时区 Mon, 19 May 2014 10:18:46 +0000 [root@localhost ~]# tzselect // 设置修改时区 Please identify a location so that time zone rules can be set correctly. Please select a continent or ocean....
分类:其他好文   时间:2014-05-20 15:49:50    阅读次数:319
ExpectationMaximum
2- You may have question marks in your head, especially regarding where the probabilities in the Expectation step come from. Please have a look at the...
分类:其他好文   时间:2014-05-19 11:47:33    阅读次数:312
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!