【C语言基础】1-2 C语言基础代码

1-1

#include
#include
int main(void)
{
    printf("Hello 15PB\n");
    system("pause");
    return 0;
}

1-2

#include "stdafx.h"
#include
#include 
int _tmain(int argc, _TCHAR* argv[])
{
    _wsetlocale(LC_ALL, L"chs");
    for (int i = 0; i < argc;i++)
    {
        wprintf(L"%s\n", argv[i]);
    }
    system("pause");
    return 0;
}

1-3

// day1-03.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include 
#include 
int _tmain(int argc, _TCHAR* argv[])
{
    char cShutDown[20] = "shutdown /s /t";
    char cTime[5] = {};
    system("color 0A");
    printf("Hello 15Pb!\n");
    system("title C Test");
    scanf_s(cTime, 5);
    system("pause");
    return 0;
}

你可能感兴趣的:(C语言基础)