#include <iostream> using namespace std; // your code here: declare and define printValue(int) void printValue(int x) { printf("Value=%d",x); } // your code here: declare and define printValue(float) void printValue(float x) { printf("Value=%0.2f",x); } int main() { float val; cin >> val; if (val == (int)val) { printValue((int)val); // int version } else { printValue(val); // float version } return 0; }
Test Cases
Test Results
Input
42
Expected Output
Value=42