http://acm.hdu.edu.cn/showproblem.php?pid=2552

数学推导

View Code
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>

int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%*lf%*lf");    
        printf("1\n");
    }
    return 0;
}

 

相关文章:

  • 2021-07-08
  • 2021-07-30
  • 2022-01-14
  • 2021-08-28
  • 2021-11-15
  • 2021-08-24
  • 2021-07-29
  • 2021-04-02
猜你喜欢
  • 2021-06-29
  • 2021-05-11
  • 2021-11-25
  • 2021-10-26
  • 2021-12-12
  • 2021-12-09
相关资源
相似解决方案