#include int abs(int t){if (t>0)return t;elsereturn -t;}int main(){int t = 0;scanf(“%d”,&t);printf(“%d”,abs(t));return 0;} C语言是一...