1-1
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
printf("Hello 15PB\n");
system("pause");
return 0;
}
1-2
#include "stdafx.h"
#include<locale.h>
#include <process.h>
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 <string.h>
#include <stdlib.h>
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语言编写的控制台程序实例。这些示例展示了如何在控制台中输出文本、设置颜色以及接收用户输入等基本操作。通过这些简单的程序,读者可以了解C语言的基本语法和控制台编程的基础。
6795

被折叠的 条评论
为什么被折叠?



