【chat GPT】任务日常,每天只执行一次。
文心一言。网页链接请用c++写一段代码。
在一个循环中,函数A 每天只调用一次。
设计思路:
配置文件里面,记录有config_year, config_month, config_day
先从电脑系统,读取年, 月, 日。
再从配置文件,读取年, 月, 日。
两边的年, 月, 日 进行对比。
如果不同,则判定为新的一天。调用一次函数a(),并更新配置文件。
等待15分钟,继续下一次循环。
=======================================================
#include <iostream>
#include <fstream>
#include <ctime>
#include <chrono>
#include <thread>
void A() {
std::cout << "Function A called." << std::endl;
}
void updateConfigFile(int year, int month, int day) {
std::ofstream configFile("config.txt");
configFile << year << " " << month << " " << day;
configFile.close();
}
int main() {
int systemYear, systemMonth, systemDay;
int configYear, configMonth, configDay;
while (true) {
// 获取系统时间
time_t now = time(0);
tm *ltm = localtime(&now);
systemYear = 1900 + ltm->tm_year;
systemMonth = 1 + ltm->tm_mon;
systemDay = ltm->tm_mday;
// 读取配置文件
std::ifstream configFile("config.txt");
configFile >> configYear >> configMonth >> configDay;
configFile.close();
// 比较日期
if (systemYear != configYear || systemMonth != configMonth || systemDay != configDay) {
A();
updateConfigFile(systemYear, systemMonth, systemDay);
}
// 等待15分钟 std::this_thread::sleep_for(std::chrono::minutes(15));
}
return 0;
}
看到了吧。代码框架写进去,chat GPT 就帮你写作业。秒出代码
翻译成TC的就行,编程的神器。
在互联网上,C++ python的资料最多,出来的代码质量最高。一些冷门的语言,能参考的代码少。chat GPT出来的代码 就差了很多
来源:网页链接
文心一言。网页链接请用c++写一段代码。
在一个循环中,函数A 每天只调用一次。
设计思路:
配置文件里面,记录有config_year, config_month, config_day
先从电脑系统,读取年, 月, 日。
再从配置文件,读取年, 月, 日。
两边的年, 月, 日 进行对比。
如果不同,则判定为新的一天。调用一次函数a(),并更新配置文件。
等待15分钟,继续下一次循环。
=======================================================
#include <iostream>
#include <fstream>
#include <ctime>
#include <chrono>
#include <thread>
void A() {
std::cout << "Function A called." << std::endl;
}
void updateConfigFile(int year, int month, int day) {
std::ofstream configFile("config.txt");
configFile << year << " " << month << " " << day;
configFile.close();
}
int main() {
int systemYear, systemMonth, systemDay;
int configYear, configMonth, configDay;
while (true) {
// 获取系统时间
time_t now = time(0);
tm *ltm = localtime(&now);
systemYear = 1900 + ltm->tm_year;
systemMonth = 1 + ltm->tm_mon;
systemDay = ltm->tm_mday;
// 读取配置文件
std::ifstream configFile("config.txt");
configFile >> configYear >> configMonth >> configDay;
configFile.close();
// 比较日期
if (systemYear != configYear || systemMonth != configMonth || systemDay != configDay) {
A();
updateConfigFile(systemYear, systemMonth, systemDay);
}
// 等待15分钟 std::this_thread::sleep_for(std::chrono::minutes(15));
}
return 0;
}
看到了吧。代码框架写进去,chat GPT 就帮你写作业。秒出代码
翻译成TC的就行,编程的神器。
在互联网上,C++ python的资料最多,出来的代码质量最高。一些冷门的语言,能参考的代码少。chat GPT出来的代码 就差了很多
来源:网页链接