JSRUN 用代码说话
精选c
全部c
#include <stdio.h> int main () { float a,b; a=5,b=7; float S=0.5*a*b; printf("三角形的面积S=%f\n",S); return 0; }