码迷,mamicode.com
首页 >  
搜索关键字:getch    ( 1998个结果
杨辉三角
问题:            杨辉三角 #include #include int c(int x, int y); /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv[]) ...
分类:其他好文   时间:2015-04-04 12:19:16    阅读次数:150
掷骰子
问题:          游戏规则:          两个人轮流掷骰子6次,并将每次投掷得点数累加起来,点数多者获胜。          要求求出玩家玩100局之后谁是最终的获胜者。 #include #include /* run this program using the console pauser or add your own getch, system("pause"...
分类:其他好文   时间:2015-04-03 21:07:55    阅读次数:145
搬山游戏
问题;          设有n座山,计算机与人作为比赛双方,轮流搬山,规定每次搬山数不超过k,谁搬最后一座山谁输。 #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int arg...
分类:其他好文   时间:2015-04-03 21:07:16    阅读次数:153
可逆素数
/* 请从小到大输出所有的4位数的可逆素数 可逆素数:一个素数将各个位数字的顺序倒过来构成的反序数也是素数 */ #include #include #include int prime(int m); /* run this program using the console pauser or add your own getch, system("pause") or input ...
分类:其他好文   时间:2015-04-01 23:53:19    阅读次数:171
歌德巴赫猜想
/* 2000以内的不小于4的正偶数都能分解成两个素数之和(验证这个猜想的正确性) */ #include #include #include int prime(int m); /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int...
分类:其他好文   时间:2015-04-01 23:53:01    阅读次数:177
要发就发
#include #include #include #define NUM 320 int number[NUM]; int prime(int m); /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc,...
分类:其他好文   时间:2015-04-01 23:51:44    阅读次数:143
两个数的最小公倍数
问题:          求两个数的最小公倍数 #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv[]) { int m, n, b; i...
分类:其他好文   时间:2015-04-01 00:29:41    阅读次数:180
将真数分解为埃及分数
问题:          输入一个分数,将该分数分解为埃及分数。          真分数:分子小于分母的分数          埃及分数:分子为一的分数 #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop...
分类:其他好文   时间:2015-04-01 00:29:02    阅读次数:127
两个数的最大公约数
问题:           求两个数的最大公约数。 //最大公约数 #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv[]) { int ...
分类:其他好文   时间:2015-04-01 00:28:51    阅读次数:119
getchar(),scanf()等总结
getchar、getch区别与用法已有getchar,getch,区别,用法getchar()和getch()的问题一直困扰着大家,关于他们的区别也是众说纷纭,可没有一种说法是详细、深入的,今天我就在前人已有的成果上,试着与大家继续探讨下这个问题:先看看规范点的说法:getcharThisisas...
分类:其他好文   时间:2015-03-29 12:10:25    阅读次数:167
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!