- 博客(5)
- 资源 (1)
- 收藏
- 关注
原创 50个素数
#include <stdio.h>int main(){int cnt=0;int x=2;int test=1;int i=2;printf("50个素数:\n");for(;cnt<50;x++,test=1,i=2){ for(;i<x;i++){ if(x%i==0){ test=0; break; } } if(test...
2019-08-31 22:27:27 434
原创 整数逆序
#include <stdio.h>#include <math.h>//两种逆序方式 int main(){ int x; int y=0; //100逆序为1 scanf("%d",&x); while(x==0){ y=x; break; } while(x>0){ y=y*10+(x%10); x=x/10...
2019-08-31 21:46:09 752
原创 求100以内的素数
#include <stdio.h>int main(){ int x=2; int i=2; int test=1; printf("100以内的素数有:"); for(;x<=100;x=x+1,i=2,test =1){ for(;i<x;i++){ if(x%i ==0){ test=0; break; }...
2019-08-31 21:43:04 188
原创 判断素数
#include <stdio.h>int main(){ int x; int test=0; int i=2; scanf("%d",&x); if(x==2){ test=1; } for(;i<x;i++){ if(x/i==0){ test=1; } } if(test==1){ printf("%d是素...
2019-08-31 21:38:32 140
原创 设定SSH密码,使用Xshell登录管理谷歌云的方法
绪:申请了Google Cloud的 $300(1年内)优惠,搭建了一个小型VPS。本来谷歌提供浏览器窗口的SSH管理界面,但是为了统一管理VPS,还是想用XShell管理Google Cloud。网上设定公钥的方法比较麻烦,所以写了以下教程来帮助各位。登录谷歌云,选择左上角的导航菜单>计算>Compute Engine>VM实例选择SSH的倒三角>在浏览器...
2019-08-21 10:52:49 1906
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人