2013年10月27日

摘要: 对于一个共有n页的书,它的页码是从1开始编号,一直到n,页码中没有无用的0,则该书的页码分别共用到了多少个0,1,2,3,4,5,6,7,8,9?输入:一个数n表示这个书共有多少页,n>=1&&n#include //使用sprintf()函数要调用的头文件#include //使用strlen()函数要调用的头文件using namespace std;int main(){int n,num[10]={0};//设置一个数组用来存十个数出现的次数,开始一定要初始化为{0}char p[8];//因为n的取值范围从1到1000000最大为7位,所以设置一个8位的字符数组 阅读全文
posted @ 2013-10-27 23:31 梦溪薇夏 阅读(173) 评论(0) 推荐(0) 编辑

2013年10月23日

摘要: 学生信息查询 请输入学生姓名 和student.xml 放在一个文件夹中打开 阅读全文
posted @ 2013-10-23 13:36 梦溪薇夏 阅读(214) 评论(0) 推荐(0) 编辑

2013年10月19日

摘要: import java.io.*;public class yanghuisanjiao {/** * @param args */ public static void main(String[] args) throws IOException{ // TODO Auto-generated method stub int i,n; String str; while(true){BufferedReader buf; buf=new BufferedReader(new InputStreamReader(System.in)); System.out.println("输入一 阅读全文
posted @ 2013-10-19 21:53 梦溪薇夏 阅读(120) 评论(0) 推荐(0) 编辑
 
摘要: 更改字体 中华人民共和国 在vs2010中新建网站,写入上述代码,网站->添加现有项--选择changefont.js文件 阅读全文
posted @ 2013-10-19 21:46 梦溪薇夏 阅读(176) 评论(0) 推荐(0) 编辑
 
摘要: 更改字体 中华人民共和国 阅读全文
posted @ 2013-10-19 21:37 梦溪薇夏 阅读(308) 评论(0) 推荐(0) 编辑
 
摘要: 给你一个十进制数字,请你将其转换成m进制import java.io.*;public class jinzhizhuanhuan {/** * @param args */ public static void main(String[] args) throws IOException{ // TODO Auto-generated method stub int n,k=0,m; int a[]=new int[24]; String str; while(true){BufferedReader buf; buf=new BufferedReader(new InputStream.. 阅读全文
posted @ 2013-10-19 20:50 梦溪薇夏 阅读(474) 评论(0) 推荐(0) 编辑
 
摘要: import java.io.*;public class countday {/** * @param args */ public static void main(String[] args) throws IOException{ // TODO Auto-generated method stub int year,month,date,i,day=0; String str; BufferedReader buf; buf=new BufferedReader(new InputStreamReader(System.in)); System.out.println("输 阅读全文
posted @ 2013-10-19 20:44 梦溪薇夏 阅读(1676) 评论(0) 推荐(0) 编辑