摘要: #include /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void main1(){ int a[5] = {1,2,3,4,5}; printf("the size of int :%d... 阅读全文
posted @ 2019-08-03 21:47 Coding_Changes_LIfe 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 把一个偶数分解成两个质数的和#include int isPrime(int num){ if(num == 1 || num ==2 ){ return 1; } else{ for(int i =2 ; i int count(int n){ if(n / 10 == 0){ //一位数返回1 return 1; } el... 阅读全文
posted @ 2019-08-03 09:28 Coding_Changes_LIfe 阅读(165) 评论(0) 推荐(0) 编辑