Previous
0 / 15
Module DEMO-33-73DEMO-OOP-33

Analytics Snapshot

DEMO-OOP-33 โ€ข Object Oriented Programming

Browser-only practice

Problem Statement

Read the raw hit count and raw user count, then print hits per user. Handle invalid data and zero users explicitly.

Input Format

Input is given as whitespace-separated raw tokens exactly in the order described by the problem statement.

Output Format

Print the exact success report or exact error message required by the problem.

Sample Testcases

Submit runs every public testcase in this browser. Results and code never leave this device.

Sample #1
Public sample
100
4
Hits Per User: 25.00
Input: raw hit count = "100", raw user count = "4".
Derivation: hitsPerUser = 100 / 4 = 25.00 | "Hits Per User: " + "25.00" = "Hits Per User: 25.00".
Output:
Hits Per User: 25.00
Sample #2
Public sample
75
3
Hits Per User: 25.00
Input: raw hit count = "75", raw user count = "3".
Derivation: hitsPerUser = 75 / 3 = 25.00 | "Hits Per User: " + "25.00" = "Hits Per User: 25.00".
Output:
Hits Per User: 25.00

Web terminal

C, C++, Java, and Python run locally in a browser VM. No worker or visualizer is used.

Saved in this browser
Editor settings