📄 file.cc
字号:
#include <iostream>using namespace std;#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>#include <cstring>int main(){ char* username = getlogin(); if(strcmp(username,"openlab")==0){ cout << "别捣乱啦" << endl; return 0; } int fd = open("luck",O_WRONLY|O_CREAT|O_EXCL, 0644); if(fd<0){ cout << "失败!" << endl; return -1; } cout << "成功!" << endl; write(fd, username, strlen(username)); close(fd);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -