CodeForces 616A(水题)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 616A(水题)相关的知识,希望对你有一定的参考价值。

while(t--)

最后结果t=-1

#include <iostream>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <stack>
using namespace std;

#define MEM(a,b) memset(a,b,sizeof(a))
#define pf printf
#define sf scanf
#define debug printf("!/n")
#define INF 1000
#define MAX(a,b) a>b?a:b
#define blank pf("\n")
#define LL long long

char a[10],b[10];

int main()
{
          int i,j;
          while(~sf("%s",a))
          {
               sf("%s",b);
               int m=0,n=0;
               while(a[m]==0) m++;
               while(b[n]==0) n++;
               int len1 = strlen(a)-m;
               int len2 = strlen(b)-n;
               if(len1>len2)
                    pf(">\n");
               else if(len2>len1)
                    pf("<\n");
               else
               {
                         while(len1--)
                         {
                                   if(a[m]>b[n])
                                   {
                                        pf(">\n");
                                        break;
                                   }
                                   else if(a[m]<b[n])
                                   {
                                        pf("<\n");
                                        break;
                                   }
                                   else
                                   {
                                        m++;
                                        n++;
                                   }
                          }
                          if(len1==-1)
                              pf("=\n");

               }
          }
          return 0;
}

 

以上是关于CodeForces 616A(水题)的主要内容,如果未能解决你的问题,请参考以下文章

第六周周赛——AK机会不易得,好好把握题解(出自HDU5650,codeforces 616A,624A,659A,655A,658A)

Codeforces 854 A Fraction 水题

水题 codeforces 158B Taxi

CodeForces 722B Verse Pattern (水题)

CodeForces 709A Juicer (水题, 模拟)

CodeForces 688A Opponents (水题)