摘要: 题目内容: 每个非素数(合数)都可以写成几个素数(也可称为质数)相乘的形式,这几个素数就都叫做这个合数的质因数。比如,6可以被分解为2x3,而24可以被分解为2x2x2x3。 现在,你的程序要读入一个[2,100000]范围内的整数,然后输出它的质因数分解式;当读到的就是素数时,输出它本身。 提示: 阅读全文
posted @ 2017-10-14 17:28 AprilieJin 阅读(2544) 评论(0) 推荐(0) 编辑
摘要: 开通博客总得写些什么是吧,O(∩_∩)O哈哈~自己现在还是一个新手,大学在设计专业混了两年,奈何对与自己专业实在是不喜欢(我已经有很努力尝试去喜欢它了,也有很认真的学习过!),对计算机的热爱,so,我还是选择自己喜欢的东西来努力,这样感觉自己做的事情也会让自己感觉很有意思吧。 然后那... 阅读全文
posted @ 2017-10-14 17:28 AprilieJin 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 装了两天的ubuntu系统终于算是勉强能用了,来来回回装了有三四次,期间出了各种各样的毛病。但是还是被我的Google大法给治好了。为了装这个系统,算是耗了两天的时间,啥事情都没干,干耗在这上面了。所以今天做个安装总结,记录一下。谁让我记性不好呢,这次不写个总结的话估计之后又能给忘了... 阅读全文
posted @ 2017-10-14 17:28 AprilieJin 阅读(3144) 评论(1) 推荐(0) 编辑
摘要: 记录下写的最后几题。14.#include int main() { double value[8]; double value2[8]; int index; for (index = 0; index int main() { char symbol... 阅读全文
posted @ 2017-10-14 17:28 AprilieJin 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 作业练习1.#include int main(void) { char ch; int spare, other, n; //空格,其他字符,换行 spare = other = n = 0; while ((ch = getchar()) != '#') ... 阅读全文
posted @ 2017-10-14 17:28 AprilieJin 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1.#include int main(){ char ch; int ct = 0; while ((ch=getchar()) != EOF) ct++; printf("%d characters read.", ct); retur... 阅读全文
posted @ 2017-10-14 17:28 AprilieJin 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 复习题:8.int choice(int a,int b,int c){ int max; max = a; if (b > max) max = b; if (c > max) max = c; return max... 阅读全文
posted @ 2017-10-14 17:28 AprilieJin 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 这章感觉好难啊,放个别人的总结.// 多维数组和指针#include int main(void){ int zippo[4][2] = {{2, 4}, {6, 8}, {1, 3}, {5, 7}}; /* zippo[0]是一个整数大小对象的地址,而zi... 阅读全文
posted @ 2017-10-14 17:28 AprilieJin 阅读(324) 评论(0) 推荐(0) 编辑