c语言入门级编程题示例锦集
1)输入1个整数,输出它的绝对值。#include<stdio.h>void main(){int a;scanf("%d",&a);if(a>=0)printf("%d\n",a);
c语言入门级编程题示例锦集