摘要:
//把前n(n<10000)个整数顺次写在一起:12345678910111213141516....数一数0至9出现的次数//输出10个整数,分别是0,1,2..至9出的个数//解题思路:分别统计每一个数中的每一位的数 并判断其每一位的值#include<stdio.h>#include<stri 阅读全文
摘要:
//问题:分子量,给出一种物质的分子的原子量求其分子量.本题中只含有四种原子,C,H,O,N,原子量分别是12.0.,1.008,16.00,14.01;//解题思路判断字母的下一位是否为数字#include<stdio.h>const int maxn=1000;char s[maxn];int 阅读全文
摘要:
相对路径和绝对路径的区别在HTML里只要涉及文件的地方(如超级链接、图片等)就会涉及绝对路径与相对路径的概念。 1.绝对路径 绝对路径是指文件在硬盘上真正存在的路径。例如“bg.jpg”这个图片是存放在硬盘的“E:\book\网页布局代码\第2章”目录下,那么 “bg.jpg”这个图片的绝对路径就是 阅读全文
摘要:
//问题:在n*n方阵里填入1,2,3....n*n,要求填成蛇形 n<=8 (空格不用输出)//二维数组/*1 2 3 4 516 17 18 19 615 24 25 20 714 23 22 21 813 12 11 10 9*/#include<stdio.h>#include<string 阅读全文
摘要:
/** * CommonDiviser.java * @author:王超 * 2017年3月15日 * wangChaoPA实习工作练习.com.最大公约数和最小公倍数.CommonDiviser * Copyright (c) 2007, 2016 Infopower corporation A 阅读全文
摘要:
//韩信点兵 分别三人,五人 七人一组,a b c分别表示每种队形排尾的人数(且a<3,b<5,c<7)//计算方法 最少人数=a*70+b*21+c*15-n*105直到人数 少于105#include<stdio.h>int main(){ int a,b,c,sum=0; scanf("%d% 阅读全文
摘要:
//输入正整数n<=20输出一个n层的倒三角形.例如n=5则输出如下所示// 解题思路 每层是2n-1个* 5-i个空格 双层for循环/*######### ####### ##### ### #*/#include<stdio.h>int main(){ int n; scanf("%d",&n 阅读全文
摘要:
/** * PrimeFactor.java * @author:王超 * 2017年3月13日 * wangChaoPA实习工作练习.com.分解质因数.PrimeFactor * Copyright (c) 2007, 2016 Infopower corporation All Rights 阅读全文
摘要:
/** * NarcissusNumber.java * @author:王超 * 2017年3月13日 * wangChaoPA实习工作练习.com.水仙花.NarcissusNumber * Copyright (c) 2007, 2016 Infopower corporation All R 阅读全文
摘要:
/** * PrimeNumber.java * @author:王超 * 2017年3月13日 * wangChaoPA实习工作练习.com.素数.PrimeNumber * Copyright (c) 2007, 2016 Infopower corporation All Rights Res 阅读全文