博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj1450
阅读量:6153 次
发布时间:2019-06-21

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

简单题

View Code
#include 
#include
#include
#include
using namespace std;int main(){ int t; scanf("%d", &t); for (int i = 0; i < t; i++) { printf("Scenario #%d:\n", i + 1); int a, b; scanf("%d%d", &a, &b); if ((a & 1) && (b & 1)) printf("%d.41\n", a * b); else printf("%d.00\n", a * b); putchar('\n'); } return 0;}

 

转载地址:http://niffa.baihongyu.com/

你可能感兴趣的文章
java连接MySql数据库
查看>>
转:Vue keep-alive实践总结
查看>>
深入python的set和dict
查看>>
C++ 11 lambda
查看>>
Android JSON数据解析
查看>>
DEV实现日期时间效果
查看>>
java注解【转】
查看>>
centos 下安装g++
查看>>
嵌入式,代码调试----GDB扫盲
查看>>
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
jquery用法大全
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>