博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
10071 - Back to High School Physics
阅读量:6004 次
发布时间:2019-06-20

本文共 888 字,大约阅读时间需要 2 分钟。

Problem B

Back to High School Physics

Input: standard input

Output: standard output

 

A particle has initial velocity and constant acceleration. If its velocity after certain time is v then what will its displacement be in twice of that time?

 

Input

The input will contain two integers in each line. Each line makes one set of input. These two integers denote the value of v (-100 <= v <= 100) and t(0<=t<= 200) ( t means at the time the particle gains that velocity) 

 

Output

For each line of input print a single integer in one line denoting the displacement in double of that time.

 

Sample Input

0 0 5 12

Sample Output

0 120

#include"stdio.h"#include"stdlib.h"int main(){  int s,v,t; while(scanf("%d%d\n",&v,&t)!=EOF)//为符合题目要求 {  s=2*v*t; //得到位移  printf("%d\n",s);    }  system("pause");//使结果界面停留  return 0;       }

 

转载于:https://www.cnblogs.com/www-xzpboke-com/archive/2013/01/29/2882151.html

你可能感兴趣的文章
飞康重回正轨
查看>>
汇编基本命令讲解
查看>>
keytool+tomcat配置HTTPS双向证书认证
查看>>
开发中可能会用到的几个 jQuery 小提示和技巧
查看>>
如何访问ASP.Net网站bin目录内的文件
查看>>
C#混淆 xenocode使用说明
查看>>
Linux内存管理机制
查看>>
.net DLL程序集中打包另一个DLL
查看>>
我的友情链接
查看>>
Drupal第三方模块汇集(一)
查看>>
我的友情链接
查看>>
使用spring的自身的listener进行web的配置
查看>>
haproxy 在http头部添加后端用户真实IP
查看>>
linux学习之“VI”与“VIM”
查看>>
linux下无线网卡驱动安装
查看>>
CentOS 下做端口映射
查看>>
百家争鸣的自媒体时代对你来说是好还是坏
查看>>
js千分符 js格式化数字
查看>>
oracle recyclebin与flashback drop
查看>>
数据库4
查看>>