#include <iostream> 
#define DAY 86400  
#define HOUR 3600 
#define MINUTE 60 
using namespace std; 
int main() { 
    cout << " Seconds: "; 
    int seconds; 
    cin >> seconds; 
    while (seconds > DAY) seconds -= DAY; 
    int h = seconds / HOUR; 
    int m = (seconds - h * HOUR) / MINUTE; 
    int s = seconds - h * HOUR - m * MINUTE; 
    cout << (h < 10 ? "0" : "") << h << ':'  
         << (m < 10 ? "0" : "") << m << ':'  
         << (s < 10 ? "0" : "") << s << endl; 
    cin.get(); cin.get(); 
    return 0; 
}

в чем сдесь ошибка?
выдает:
1>.\Debug\project2.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. 5 C405BAO =09B8 C:070==K9 D09;
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


рекомендуемые вопросы

Copyright © 2025 SCHOLAR.TIPS - All rights reserved.