现在的位置: 首页 > 综合 > 正文

uva 10071 Back to High School Physics

2017年12月28日 ⁄ 综合 ⁄ 共 118字 ⁄ 字号 评论关闭

代码:

 

#include <stdio.h>

int main( )
{
  int a,b;
  while (scanf("%d%d",&a,&b) == 2){
        printf("%d\n",2*a*b);
        }
  
  return 0;
}

抱歉!评论已关闭.