C语言逆序输出三个整数:简单示例
#include <stdio.h>
int main()
{
int a, b, c;
printf('请输入三个整数:\n');
scanf('%d%d%d', &a, &b, &c);
printf('逆序输出:\n');
printf('%d %d %d\n', c, b, a);
return 0;
}
原文地址: https://www.cveoy.top/t/topic/nfl3 著作权归作者所有。请勿转载和采集!