标签:ack color strong clu 自带 else int abs style
如果a是整数: abs()
#include<stdio.h> #include<math.h> int a=100,b; b=abs(a); printf("%d",b);
如果a是浮点数: double型 fabs()
#include<stdio.h> #include<math.h> float a=99.9; float b; b=fabs(a); printf("%f",b);
#include <stdio.h> int abs(int t) { if (t>0) return t; else return -t; } int main() { int t = 0; scanf("%d",&t); printf("%d",abs(t)); return 0; }
标签:ack color strong clu 自带 else int abs style
原文地址:https://www.cnblogs.com/expedition/p/11626847.html