الأحد، 22 ديسمبر 2013
8:59 ص

برنامج نسخ الوقت باستخدام structure


#include "stdafx.h"
#include<iostream>
#include<conio.h>
using namespace std;
struct time
{
int hour;
int min;
int sec;
};
void main()
{
time t1 = { 12, 22, 33 };
time t2;
t2 = t1;
cout << t2.hour << ": " << t2.min << ": "<< t2.sec;
_getch();
}


0 التعليقات:

إرسال تعليق