码迷,mamicode.com
首页 >  
搜索关键字:please    ( 3193个结果
质因数的求法
质因数分解 /* 求质因数 */ #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
451 4.7.0 Temporary server error. Please try again later. PRX2 故障处理
本周四临近下班时,接到一个客户的电话——其Exchange2013CU2系统终端用户无法使用SMTP方式发送邮件。当客户端(OLK或者Foxmail)发送邮件时,系统提示错误:4514.7.0Temporaryservererror.Pleasetryagainlater.PRX2诊断时,通过telnetServer25命令检测可以连接;通过客户端软..
分类:其他好文   时间:2014-05-25 05:05:39    阅读次数:4214
2014辽宁ACM省赛 Prime Factors
问题 L: Prime Factors 时间限制: 1 Sec  内存限制: 128 MB 提交: 36  解决: 28 [提交][状态][论坛] 题目描述 I'll give you a number , please tell me how many different prime factors in this number. 输入 There is multiple te...
分类:其他好文   时间:2014-05-24 20:52:54    阅读次数:311
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
一段小程序理解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
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
迷上了代码!