-
嵌套条件运算符的使用来完成这个问题:学术“= 90…
1输出国际象棋棋盘
2打印楼梯,同时在楼梯上方打印两个笑脸
3古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?
4判断101-200之间有多少个素数,并输出所有素数。
5打印出所有的“水仙花数”,所谓“水仙花数”是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个“水仙花数”,因为153=1的三次方+5的三次方+3的三次方。
6将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。
程序分析:对n进行分解质因数,应先找到一个最小的质数k,然后按下述步骤完成:
(1)如果这个质数恰等于n,则说明分解质因数的过程已经结束,打印出即可。
(2)如果nk,但n能被k整除,则应打印出k的值,并用n除以k的商,作为新的正整数你n,
重复执行第一步。
(3)如果n不能被k整除,则用k+1作为k的值,重复执行第一步。
7利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。-The use of nested conditional operator to complete this question: academic "= 90 points, said students with A between 60-89, with B, said
60 points or less, said to use C.
- 2022-02-24 23:38:59下载
- 积分:1
-
SDK版的中国象棋,提供初学者学习!
SDK版的中国象棋,提供初学者学习!-SDK version of Chinese chess, for beginners learning!
- 2022-09-18 05:25:03下载
- 积分:1
-
具有图形界面的俄罗斯方块的c语言程序。希望对大家有所帮助。...
具有图形界面的俄罗斯方块的c语言程序。希望对大家有所帮助。-With a graphical interface of the Russian box c language program. Would like to help everyone.
- 2023-01-25 22:00:03下载
- 积分:1
-
这个五子棋游戏是天罡鹦鹉的五子棋绿色版,免安装,不会修改任何系统信息。此五子棋游戏而且还具有记忆功能,能记录下每次的游戏,以供下次游戏使用。如果你每天和他进行对...
这个五子棋游戏是天罡鹦鹉的五子棋绿色版,免安装,不会修改任何系统信息。此五子棋游戏而且还具有记忆功能,能记录下每次的游戏,以供下次游戏使用。如果你每天和他进行对战,就会发现他和你都越来越聪明。-This game is Gobang Gobang green parrots Tian-gang version, free installation, will not modify any system information. Gobang this game but also has a memory function that can record every time the game is for the use of the next game. If you play him every day and you will find him and you become smarter.
- 2023-04-06 07:20:04下载
- 积分:1
-
新简单俄罗斯方块游戏
新简单俄罗斯方块游戏-new simple Tetris game
- 2022-03-14 10:54:42下载
- 积分:1
-
VC++6游戏编程入门及源码
第一章 游戏基础
第二章 扫雷
第三章 五子棋
第四章 俄罗斯方块
第五章 老鼠和滚球
第六章 飞机游戏...
VC++6游戏编程入门及源码
第一章 游戏基础
第二章 扫雷
第三章 五子棋
第四章 俄罗斯方块
第五章 老鼠和滚球
第六章 飞机游戏
第七章 五子棋联机游戏
-VC six games programming source portal and the first game based on the second chapter mine Chapter 331 Chapter III IV Russia Chapter V rats box and bowls of Chapter VI of Chapter VII of the game aircraft 331 online games
- 2022-01-25 21:00:56下载
- 积分:1
-
人机对弈的五子棋游戏。当一方出现五子连珠的局势时,程序自动判断胜负并输出结果。...
人机对弈的五子棋游戏。当一方出现五子连珠的局势时,程序自动判断胜负并输出结果。-the man-machine players 331 games. When either Wuzilianzhu situation, the program automatically judge the outcome and output results.
- 2022-03-29 19:14:16下载
- 积分:1
-
自己写的红心大战,注释较详细,但人工智能很弱
自己写的红心大战,注释较详细,但人工智能很弱-himself wrote the hearts Notes more detail, but the weak artificial intelligence
- 2022-06-16 11:52:59下载
- 积分:1
-
这是一个能够远程下中国象棋的程序,能够基本实现远程下棋功能,但还不完善,屏幕有些闪烁,但还是值得借鉴的。程序使用说明:先在一台机器上运行,并选择作为服务器,再到...
这是一个能够远程下中国象棋的程序,能够基本实现远程下棋功能,但还不完善,屏幕有些闪烁,但还是值得借鉴的。程序使用说明:先在一台机器上运行,并选择作为服务器,再到另外一台机器上运行这个程序,选择不作服务器,并制定服务器的IP地址,就可开始了。-This is a remote Chinese chess under the procedures can bring about long-distance chess basic functions, but is not perfect, some screen flicker, but it is still worth consideration. Procedures for use : first in a machine operation and choice as a server, and then another one machine to run this procedure, choosing not to make servers, and to develop the IP addresses can be started.
- 2022-03-03 14:16:16下载
- 积分:1
-
一个基于Java语言的俄罗斯方块小游戏的源代码
一个基于Java语言的俄罗斯方块小游戏的源代码-Java-based Tetris game" s source code
- 2022-06-17 16:43:05下载
- 积分:1