摘要:
#include #include using namespace std; int reverse(int x) { int i=0,f=0;char str[100]; if(x>0) { f=1; }else { f=0;x=-x;} if (x==0) return 0; while(x>0) { str[i]=x%10+'0'; x/=10; i++; } str[i]='\0'... 阅读全文
摘要:
当电脑桌面图标变成未知的文件类型那种的解决方法 自己写了个批处理 echo off taskkill /F /im explorer.exe cd /d %userprofile%\appdata\local del iconcache.db /a start explorer.exe taskki 阅读全文
摘要:
自己闲的没事干做了这个C和DOS批处理相结合的程序。 你可以修改后编译运行即可,把文件放到这个磁盘,然后隐藏,你绝对找不到,文件不会丢失。 隐藏的是H:盘 在cmd输入 diskpart select disk 0 list partition 可以查看电脑磁盘对应的编号 比如说我的: Micros 阅读全文
摘要:
#include #include #include using namespace std; const int maxn=7400; int f[maxn]; int main() { int i,j,n; while( cin>>n) { int q=0; memset(f,0,sizeof(f)); f[0]=1; for(i=2; i=0; j--) ... 阅读全文
摘要:
error LNK1123 终极解决方案: VS2010在经历一些更新后,建立Win32 Console Project时会出“error LNK1123” 错误,解决方案为将 项目|项目属性|配置属性|清单工具|输入和输出|嵌入清单 “是”改为“否”即可,但是没新建一个项目都要这样设置一次。 在建 阅读全文
摘要:
skew二进制 Time Limit 1000ms Memory Limit 65536K Time Limit 1000ms Memory Limit 65536K description input output sample_input sample_output 阅读全文
摘要:
Similar Word description It was a crummy day for Lur. He failed to pass to the CET-6 (College English Test Band-6). Looking back on how it was in last 阅读全文