摘要:
队列:queue queue is especially useful in threaded programming when information must be exchanged safely between multiple threads. 有三种队列模式 class queue.Qu 阅读全文
摘要:
#include <stdio.h> int main() { int age; printf("input your age"); scanf("%d",&age); if(age>22) { printf("you have become old"); } else if(age < 18) { 阅读全文