zoukankan      html  css  js  c++  java
  • 2015年天勤考研机试模拟赛 A 推断三角形

    【思路】:採用atoi转换长度。两边仅仅和大于第三边,两边之差小于第三边。

    【AC代码】:

    #include <iostream>
    #include <algorithm>
    #include <cstdio>
    #include <cstring>
    using namespace std;
    
    #define MAX 100+10
    
    int main()
    {
    	//freopen("in.txt", "r", stdin);
    	//freopen("out.txt", "w", stdout);
    	int i = 0, tri[3];
    	for (i = 0;  i < 3; i++)
    	{
    		int j = 0, n = 0, len;
    		char temp[10], length[5+1];
    		cin >> n;
    		while (n--)
    		{
    			cin >> temp;
    			if (!strcmp(temp, "one"))
    				length[j++] = '1';
    			else if (!strcmp(temp, "two"))
    				length[j++] = '2';
    			else if (!strcmp(temp, "three"))
    				length[j++] = '3';
    			else if (!strcmp(temp, "four"))
    				length[j++] = '4';
    			else if (!strcmp(temp, "five"))
    				length[j++] = '5';
    			else if (!strcmp(temp, "six"))
    				length[j++] = '6';
    			else if (!strcmp(temp, "seven"))
    				length[j++] = '7';
    			else if (!strcmp(temp, "eight"))
    				length[j++] = '8';
    			else if (!strcmp(temp, "nine"))
    				length[j++] = '9';
    			else if (!strcmp(temp, "zero"))
    				length[j++] = '0';
    		}
    		length[j] = '';
    		tri[i] = atoi(length);
    	}
    	if ((tri[0]+tri[1]>tri[2]) && (abs(tri[0]-tri[1])<tri[2]))
    		cout << "YES";
    	else
    		cout << "NO";
    }


  • 相关阅读:
    2
    网络对抗第四次实验恶意代码
    网络对抗第三次实验
    网络对抗第二次实验
    网络攻防第一次实验
    123
    数据结构
    第五次实验
    第二次实验
    Qt应用笔记
  • 原文地址:https://www.cnblogs.com/wzzkaifa/p/6796854.html
Copyright © 2011-2022 走看看