程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> Measuring Lengths in Baden,lengthsbaden

Measuring Lengths in Baden,lengthsbaden

編輯:關於C語言

Measuring Lengths in Baden,lengthsbaden


Description Measuring Lengths in Baden time limit per test: 2 seconds memory limit per test: 256 megabytes input: standard input output: standard output

Lengths are measures in Baden in inches and feet. To a length from centimeters it is enough to know that an inch equals three centimeters in Baden and one foot contains 12 inches.

You are given a length equal to n centimeters. Your task is to convert it to feet and inches so that the number of feet was maximum. The result should be an integer rounded to the closest value containing an integral number of inches.

Note that when you round up, 1 cm rounds up to 0 inches and 2 cm round up to 1 inch.

Input

The only line contains an integer n (1 ≤ n ≤ 10000).

Output

Print two non-negative space-separated integers a and b, where a is the numbers of feet and b is the number of inches.

Sample test(s)

input 42 output 1 2 input 5 output 0 2

 

 

 

 

 

 

 

 

題解:輸入厘米 轉換為英尺英寸 注意四捨五入,"得寸進尺"。

代碼:

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 int main()
 5 {
 6     int n, a, b;
 7     scanf("%d", &n);
 8     a = n/36;
 9     b = (n-36*a)/3;
10     if(n-36*a-3*b == 2) {
11         b++;
12         if(b==12) {
13             a++;
14             b = 0;
15         }
16     }
17     printf("%d %d", a, b);
18     return 0;
19 }

 

Problem - 125A - Codeforces

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved