标签:des style class blog code http
HDU - 4788Time Limit:1000MS | Memory Limit:32768KB | 64bit IO Format:%I64d & %I64u |
Description
Input
Output
Sample Input
2 100[MB] 1[B]
Sample Output
Case #1: 4.63% Case #2: 0.00%
Hint
思路:主要的差别是在第一位#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> using namespace std; int n; char u[8]; int main() { while (scanf("%d", &n) != EOF) { for (int cas = 1; cas <= n; cas++) { scanf("%*d%s", u); printf("Case #%d: ", cas); if (u[1] == 'B') printf("0.00"); else if (u[1] == 'K') printf("2.34"); else if (u[1] == 'M') printf("4.63"); else if (u[1] == 'G') printf("6.87"); else if (u[1] == 'T') printf("9.05"); else if (u[1] == 'P') printf("11.18"); else if (u[1] == 'E') printf("13.26"); else if (u[1] == 'Z') printf("15.30"); else if (u[1] == 'Y') printf("17.28"); printf("%%\n"); } } return 0; }
HDU - 4788 Hard Disk Drive (成都邀请赛H 水题),布布扣,bubuko.com
HDU - 4788 Hard Disk Drive (成都邀请赛H 水题)
标签:des style class blog code http
原文地址:http://blog.csdn.net/u011345136/article/details/28420973