摘要:
#include //包含printf()、scanf()、gets()、puts()、getchar()函数#include //包含malloc()函数#include //包含strcmp()、strlen()、sizeof()、strcpy()函数#include //包含s... 阅读全文
摘要:
package SourceFile;//创建动物类(父类).public abstract class CAnimal{ public booleanmammal; //是不是哺乳动物 public booleancarnivorous; //是不是食肉动物 public intmood... 阅读全文
摘要:
net user //查看有哪些用户net start //查看开启了哪些服务项目net send ip “文本信息” //向对方发送消息(如果对方关了信使有可能会收不到)net password 密码 //更改系统登录密码ping -t -1 65550 ip 死亡之ping(发送大于64... 阅读全文
摘要:
#includeint main(){ int x = 0x1234; if (char(x) == 0x34) { printf("小端机!\n"); } else { printf("大端机!\n"); } return 0;} 阅读全文
摘要:
#includeusing namespace std; //声明命名空间void main(){ char format[12]="format", name[10], choice; re:system("cls"); //用于跳转到此的节点 cout>choice; switch(cho... 阅读全文