编程共25篇 第3页
最大公约数 最小公倍数itksw-信息技术考试-测试-it IT考试网

最大公约数 最小公倍数

最大公约数 最小公倍数 #include<bits/stdc++.h> using namespace std; int gcd(int a,int b){ if(b==0) return a; return gcd(b,a%b); } int scm(int a,int b){ if (b==0) return 0; ret...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0570
Python俄罗斯方块itksw-信息技术考试-测试-it IT考试网

Python俄罗斯方块

Python俄罗斯方块代码: import random import pygame colors = [ (0, 0, 0), (3, 56, 174), (114, 203, 59), (255, 213, 0), (255, 151, 28), (255, 50, 19), ] class Block: x_in_grids = 0 y...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0530
Python位运算符详解itksw-信息技术考试-测试-it IT考试网

Python位运算符详解

Python 位运算按照数据在内存中的二进制位(Bit)进行操作,它一般用于底层开发(算法设计、驱动、图像处理、单片机等),在应用层开发(Web 开发、Linux 运维等)中并不常见。想加快学习进度...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0510
递归和递推-累加计算itksw-信息技术考试-测试-it IT考试网

递归和递推-累加计算

计算: 1+2+3+4+5+6+…+n   递推的写法: #include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int s=0; for(int i=0;i<=n;i++){ s=s+i; } cout<...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0460
递归-素数的计算itksw-信息技术考试-测试-it IT考试网

递归-素数的计算

递归-素数的计算 #include <bits/stdc++.h> using namespace std; int isprime(int n){ int isture=1; for(int i=2;i<n;i++){ if(n%i==0){ isture=0; break; } } return isture; } int...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0290