博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
uva 12714 2013Dhaka F
阅读量:6581 次
发布时间:2019-06-24

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

题意:给一个向量输出任意与它垂直的向量 ,不能出现负数。

思路:直接输出(d, a) (b, c)

代码如下:

1 /************************************************** 2  * Author     : xiaohao Z 3  * Blog     : http://www.cnblogs.com/shu-xiaohao/ 4  * Last modified : 2014-07-05 20:23 5  * Filename     : uva_12714.cpp 6  * Description     :  7  * ************************************************/ 8  9 #include 
10 #include
11 #include
12 #include
13 #include
14 #include
15 #include
16 #include
17 #include
18 #include
19 #include
20 #define MP(a, b) make_pair(a, b)21 #define PB(a) push_back(a)22 23 using namespace std;24 typedef long long ll;25 typedef pair
pii;26 typedef pair
puu;27 typedef pair
pid;28 typedef pair
pli;29 typedef pair
pil;30 31 const int INF = 0x3f3f3f3f;32 const double eps = 1E-6;33 34 int main()35 {36 // freopen("in.txt", "r", stdin);37 38 ll a, b, c, d, kase = 1, T;39 cin >> T;40 while(T--){41 cin >> a >> b >> c >> d;42 cout << "Case " << kase++ << ": ";43 cout << d << ' ' << a << ' ' << b << ' ' << c << endl;44 }45 return 0;46 }
View Code

 

转载于:https://www.cnblogs.com/shu-xiaohao/p/3826564.html

你可能感兴趣的文章
List grantee right in oracle
查看>>
Activity生命周期
查看>>
通过VBS编写自动输入账号和密码、自动登录程序的脚本
查看>>
MTK APSoC SDK MT7621编译固件的快速开始
查看>>
深度解析Istio系列之安全模块篇
查看>>
Linux 系统 审计
查看>>
JS -------------------设置弹出框位置屏幕的中间
查看>>
性能测试 vbs使用(一)
查看>>
1.2 linux哲学思想
查看>>
jQuery基础
查看>>
BZOJ5312:冒险——题解
查看>>
echarts,两点连线,中间断裂
查看>>
samba简易配置
查看>>
庆祝在CNBlogs开博!
查看>>
javascript reverse string
查看>>
南阳oj 题目6 喷水装置(一)
查看>>
运筹学上机实验 - 单纯形方法的两阶段法
查看>>
CF294C Shaass and Lights
查看>>
oracle 11g 报错记录
查看>>
文件状态是否变化
查看>>