Mephistophelés
Bronz Üye
-
- Katılım
- Eylül 10, 2012
-
- Mesajlar
- 3,744
-
- Tepkime puanı
- 2
-
- Puanları
- 293
-
- Yaş
- 48
Kod:
#include <Windows.h>
#include <stdio.h>
#include <iostream>
#include <string>
using namespace std;
int main(){
SYSTEMTIME st;
GetSystemTime(&st);
system("color a");
int yil=st.wYear;
int ay=st.wMonth;
int gun=st.wDay;
int saat=st.wHour;
int dakika=st.wMinute;
int saniye=st.wSecond;
while(1){
GetSystemTime(&st);
yil=st.wYear;
ay=st.wMonth;
gun=st.wDay;
saat=st.wHour;
dakika=st.wMinute;
saniye=st.wSecond;
cout << "Yıl: " << yil << " - " << "ay: " << ay << " - " << "gun: " << gun << " - " << "saat: " << saat + 3 << " - " << "dakika: " << dakika << " - " << "saniye: " << saniye << endl << endl;
system("cls");
}//while
}// main