このblogを訪問するような方々は,
ご友人やご家族に服役中の方が多いものと拝察いたします.
そこで, 残り刑期を表示してくれるプログラムをChatGPTに書かせてみました.
#include <stdio.h>
#include <time.h>
int main() {
time_t now, end;
double seconds;
struct tm end_time = {0};
end_time.tm_year = 2029-1900;
end_time.tm_mon = 11-1;
end_time.tm_mday = 18;
time(&now);
end = mktime(&end_time);
seconds = difftime(end, now);
int days = (int) (seconds / (60 * 60 * 24));
printf("2029年11月18日まであと %d 日\n", days);
return 0;
}
https://paiza.io/ja/projects/new?language=c でも実行できますよ.