2022年7月30日

摘要: 1 #define _CRT_SECURE_NO_WARNINGS 1 2 #include<stdio.h> 3 4 int sushu(int n) 5 { 6 int j=2; 7 while (j < n) 8 { 9 if (n % j != 0) 10 j++; 11 else 12 b 阅读全文
posted @ 2022-07-30 23:11 是个niu 阅读(77) 评论(0) 推荐(0) 编辑
 
摘要: 1 #define _CRT_SECURE_NO_WARNINGS 1 2 #include<stdio.h> 3 #include<string.h> 4 int main() 5 { 6 int i; 7 char password[20]={0}; 8 for (i = 0; i < 3; i 阅读全文
posted @ 2022-07-30 00:20 是个niu 阅读(230) 评论(0) 推荐(0) 编辑