无聊散分
出差了,通讯就是出差的命啊现在连上网的时间都少
求编码工作,求啊求啊求啊
本人不才,只会一点‘helloworld’
程序代码:简单的Hello World!
main(){puts("hello world!");}
或:
main()
{
printf("hello world!\n");
}
用C语言写对话框式的 hello world!
#include <windows.h>
int main()
{
MessageBox(NULL,TEXT("hello world!"), TEXT("hello"), 0);
return 0;
}
用vb写对话框式的hello world!
msgbox"hello world!",0,"hello"
用VBS写对话框式的hello wrold!
msgbox"hello world!",0,"hello"
wscript.echo"hello world!"

