podebt.c

来自「C.Game.Programming.For.Dummies原码」· C语言 代码 · 共 18 行

C
18
字号
#include <stdio.h>
#include <conio.h>

void main()
{
	int num;
	char let;
	char name[20];

	printf("Type in a number, a letter and your name:");
	scanf("%i %c %s",&num,&let,&name);

	printf("%s typed in %i and %c.\n",name,num,let);
	printf("This information will be used by the\n");
	printf("government to force you into personally\n");
	printf("paying off the national debt.\n");
	printf("Thank you,\nUncle Sam.\n");
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?