摘要: // MyFirst.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include "Winsock2.h"#pragma comment(lib,"ws2_32.lib")int _tmain(int argc, _TCHAR* argv[]){ WORD wVersionRequested;WSADATA wsaData;int err;wVersionRequested = MAKEWORD(1,1);err = WSAStartup(wVersionRequested,&wsaDa 阅读全文
posted @ 2013-07-01 14:20 露水上的青蛙 阅读(454) 评论(0) 推荐(0) 编辑
摘要: // 629.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"//#include class Point{public:void OutPut(){int a=2;printf("Please output a integer:\n");printf("%d",a);scanf("%d",&a);}void f(){ /* int a; scanf("%d",&a); if(a==1) { char s[5]={'a',' 阅读全文
posted @ 2013-07-01 12:16 露水上的青蛙 阅读(160) 评论(0) 推荐(0) 编辑