虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

http-<b>Java-Applet</b>

  • 实现图片水波效果

    实现图片水波效果,java applet程序

    标签:

    上传时间: 2013-12-16

    上传用户:tuilp1a

  • 功能强大的jsp聊天室

    功能强大的jsp聊天室,采用java applet界面

    标签: jsp

    上传时间: 2014-01-05

    上传用户:康郎

  • C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.141

    C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264

    标签: my_Include include define 3.141

    上传时间: 2014-01-17

    上传用户:epson850

  • javaswing实现一个指定的组合框编辑器

    javaswing实现一个指定的组合框编辑器,用java applet 打开,建议大家学javaApp的时候参考。

    标签: javaswing 组合 编辑器

    上传时间: 2014-01-07

    上传用户:561596

  • 如果你想在自己的计算机游戏中创建音乐编辑器

    如果你想在自己的计算机游戏中创建音乐编辑器,那么这个程序可以给你一些帮助,它介绍一个简单的 Java applet—Javano—它提供基本的音乐编辑服务。

    标签: 计算机 编辑器

    上传时间: 2014-01-06

    上传用户:思琦琦

  • 程序名称:PolyDemo 运行环境:系统需要安装j2sdk-1_4_2 注意事项: 如修改数据

    程序名称:PolyDemo 运行环境:系统需要安装j2sdk-1_4_2 注意事项: 如修改数据,先在文本框中输入自行设定的数据,再点击“重置数据”即设置成功。 再选择“单步执行”或“连续执行”。 用Java Applet实现算法的动态模拟

    标签: PolyDemo sdk 程序 注意事项

    上传时间: 2014-01-25

    上传用户:Andy123456

  • 功能强大的jsp聊天室

    功能强大的jsp聊天室,采用java applet界面

    标签: jsp

    上传时间: 2013-12-11

    上传用户:ruixue198909

  • 猜数字游戏buttonEnter按钮增加了ActionEvent事件监视器

    猜数字游戏buttonEnter按钮增加了ActionEvent事件监视器,监视器为当前Java Applet buttonGetNumber按钮增加了ActionEvent事件监视器,监视器为当前Java

    标签: buttonEnter ActionEvent 数字 按钮

    上传时间: 2014-08-24

    上传用户:PresidentHuang

  • 系统运行时的截屏图:webstart_screen01.gif/webstart_screen02.gif。 安装使用前

    系统运行时的截屏图:webstart_screen01.gif/webstart_screen02.gif。 安装使用前,请先查阅:help/help.html。 本系统的客户端浏览器仅支持IE6.0,其他浏览器如MyIE2/FireFox不能正确运行Java Applet或JScript,故无法正常使用本系统。特此说明

    标签: webstart_screen gif 01 02

    上传时间: 2014-11-29

    上传用户:cainaifa

  • 数字运算

    数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    标签: 数字 运算

    上传时间: 2015-05-21

    上传用户:daguda