经典练习C语言编程的题目及答案整理
1.逆序输出正三位数#include <stdio.h>int main(){int input,output= 0; scanf("%d",&input);while(input != 0) {
经典练习C语言编程的题目及答案整理