摘要: // 格式化输入、输出函数的简单应用 #include <stdio.h> int main() { int num,t=1; while(t<=3) { scanf("%d", &num); printf("2049%04d\n", num); t++; } return 0; } %04d表示从 阅读全文
posted @ 2021-03-28 23:47 玛卡巴卡~ 阅读(81) 评论(1) 推荐(0)