摘要: 1 2 3 4 5 // 计算10亿秒约等于多少年,并打印输出 #include <stdio.h> int main() { int year; // 补足代码 year = 1000000000 / 365 / 24 / 60 / 60; printf("10亿秒约等于%d年\n", year) 阅读全文
posted @ 2025-03-09 21:41 wangchenxu 阅读(13) 评论(0) 推荐(0)