摘要:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript"> window.onload = function(){ function toTF(str){ v 阅读全文
摘要:
#include <stdio.h> void PRINT(long s) { FILE *out; printf("s=%ld\n",s); if((out=fopen("result.dat","w+"))!=NULL) { fprintf(out,"s=%ld",s); fclose(out) 阅读全文