Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ConsoleApplication19.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include <locale.h>
- int _tmain(int argc, _TCHAR* argv[])
- {
- setlocale(LC_ALL,"Ukrainian");
- int minutes=1; //вхідні дані
- int hh,mm; //результат
- while(true) {
- puts("Задайте час в хв.");
- scanf_s("%d",&minutes);
- if (minutes>0)
- {
- hh=minutes/60;
- mm=minutes%60;
- printf("hh=%d mm=%d\n",hh,mm);
- }
- else
- break;
- };
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement