摘要: // 222.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <stdio.h> int main(int argc, char* argv[]) {char a[5 阅读全文
posted @ 2019-04-25 15:53 望天╭(°A°`)╮ 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <math.h> int main() { float a,b,c; float s,area; printf("请输入三角形的三条边:\n"); scanf("%f,%f,%f",&a,&b,&c); if(a+b>c&&b+c>a&&a+c 阅读全文
posted @ 2019-04-25 15:33 望天╭(°A°`)╮ 阅读(143) 评论(0) 推荐(0) 编辑