- 分享
- 0
- 人气
- 0
- 主题
- 62
- 帖子
- 6367
- UID
- 51295
- 积分
- 3715
- 阅读权限
- 21
- 注册时间
- 2006-11-21
- 最后登录
- 2022-1-19
- 在线时间
- 3699 小时
|
想学programming?自己先接触吧,不要一直说要买书要买书什么的,自己动动手
仔细研究,领悟其中的道理
以下Code你喜欢/适合哪一个就选那一个吧!
PSrogram通常是研究电脑研究得几乎没有东西研究了才来研究 :-)
VB.NET
- public class form1 '集合
- private sub button1_click(byval sender as system.object,byval e as system.eventargs)handles button1.click '集合
- process.start(“explorer.exe”)‘命令
- for i as integer = 0 to integer.maxvalue - 1
- next
- end sub
- end class
复制代码
C#.NET
- public class form1
- {
- private void button1_click(object sender,eventargs e)
- {
- process.start("explorer.exe");
- for(int i = 0;i < integer.maxvalue;i++)
- {
- }
- }
- }
复制代码
C/C++
- using system;
- using system.windows;
- using system.windows.forms;
- using system.drawing;
- public class form1
- {
- #include <"windows.h">
- private void button1_click(object ^ sender,eventargs ^ e)
- {
- process::Start("explorer.exe");
- for(int i = 0;i < integer->maxvalue;i++)
- {
- }
- }
- }
复制代码
JAVA
- Imports System
- Imports System.Java.JOptionPane
- public class aaa
- {
- private void bbb(args ^ e)
- {
- JOptionPane.ShowMessageDialog(null,"strings~~~","title",WS_INFORMATION);
- try
- {
- }
- catch(exeption ex)
- {
- string aaa = ex.message;
- Showmessagedialog(null,aaa)
- }
- }
- }
复制代码 |
|