做小程序代码怎么写,这样一个小程序VB要怎么写求详细代码

1,这样一个小程序VB要怎么写求详细代码Private Sub Command1_Click()Shell App.Path & "\我爱你.exe", 1End Sub我有一个解一元三次方程方程的软件(可以接一次到三次幂) , 自己做的,要不?qq:412495313
2,用C语言编写一个小程序#include<stdio.h>#include<stdlib.h>bool fun(int n)for(int i=2;i<=n/2;i++)if(n%i==0)return false;return true;}int main()for(i=2;i<1000;i++)if(fun(i))printf("%d\t",i);system("pause");}首先明白什么是质数...除了一和本身不能被其他数整除的数就是质数.........假设一个数n , 从2-n的开方都没有找到一个数可以被n整除 , 这个数就是质数.....这就是解决这个问题的思路.....简单的C语言题重在思考.....不要单单依赖别人》 。。解决这个问题的答案不止一个.....欢迎追问,希望对你有帮助#include <stdio.h>int main() int i,x,n=0; for(x=2;x<=1000;x++) for(i=2;i<x;i++) if((x%i)==0) break; if(i>=x) printf("%8d",x); } printf("\n");}你等一下 再给你做 【做小程序代码怎么写,这样一个小程序VB要怎么写求详细代码】
3,怎么样Javascript编写一个小程序js文件名假设为:ss.js,内容如下:function max(a,b)return (a>=b?a:b);}Html文件名假设为:ss.html,内容如下:<html> <head><title> ss </title><script type="text/javascript" src="http://www.lisdn.com/mnsj/hhjy/ss.js"></script><script type="text/javascript">var a=max(34,55); document.writeln(a);</script> </head><body> </body></html>你按照如上解释操作就会得到预期结果:最大值55;当然若还不是你希望的那样,我想你应该已经有了自己的想法 。function max_value (x,y)return x >= y ? x : y;}<html><body><script type="text/javascript">function max_value(x,y)return x>y?x:y;}document.write(max_value(10,40));</script></body></html>

    推荐阅读