Openjudge 1.1答案

本文是一系列C语言基础教程,涵盖了从简单的`Hello, World!`程序到浮点数的输出、字符处理、对齐输出和复杂字符图形的创建。示例代码包括了输入多个整数并输出第二个整数、浮点数的格式化输出以及创建字符三角形和菱形图案。此外,还包括了一个简单的超级玛丽游戏画面的打印。
摘要由CSDN通过智能技术生成

如有疑问,欢迎评论、私信讨论交流!

01:Hello, World!

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main()
{
	printf("Hello, World!\n");
	return 0;
}

02:输出第二个整数

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main()
{
	int a,b,c;
	scanf("%d %d %d",&a,&b,&c);
	printf("%d\n",b);
	return 0;
}

03:对齐输出

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main()
{
	int a,b,c;
	scanf("%d%d%d",&a,&b,&c);
	printf("%8d %8d %8d\n",a,b,c);
	return 0;
}

04:输出保留3位小数的浮点数

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main()
{
	float a;
	scanf("%f",&a);


	printf("%.3f\n",a);
	return 0;
}

05:输出保留12位小数的浮点数

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main()
{
	double a;
	scanf("%lf",&a);


	printf("%.12lf\n",a);
	return 0;
}

06:空格分隔输出

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main()
{
	char a;
	int b;
	float c;
	double d;
	
	scanf("%c\n%d\n%f\n%lf",&a,&b,&c,&d);


	printf("%c %d %.6f %.6lf\n",a,b,c,d);
	return 0;
}

07:输出浮点数

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main()
{

	double d;
	
	scanf("%lf",&d);


	printf("%f\n%.5lf\n%e\n%g\n",d,d,d,d);
	return 0;
}

08:字符三角形

#include <stdio.h>

int main()
{
	char a;
	scanf("%c",&a);
	
printf("  %c\n\
 %c%c%c\n\
%c%c%c%c%c\n",a,a,a,a,a,a,a,a,a);
	return 0;
 } 

09:字符菱形

#include <stdlib.h>
#include <stdbool.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main()
{

	char d;
	
	scanf("%c",&d);
	


	printf("  %c\n",d);
	printf(" %c%c%c\n",d,d,d);
	printf("%c%c%c%c%c\n",d,d,d,d,d);
	printf(" %c%c%c\n",d,d,d);
	printf("  %c",d);
	return 0;
}

10:超级玛丽游戏

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
	cout<<"                ********"<<endl;
	cout<<"               ************"<<endl;
	cout<<"               ####....#."<<endl;
	cout<<"             #..###.....##...."<<endl;
	cout<<"             ###.......######              ###                 ###           ###           ###"<<endl;
	cout<<"                ...........               #...#               #...#         #...#         #...#"<<endl;
	cout<<"               ##*#######                 #.#.#               #.#.#         #.#.#         #.#.#"<<endl;
	cout<<"            ####*******######             #.#.#               #.#.#         #.#.#         #.#.#"<<endl;
	cout<<"           ...#***.****.*###....          #...#               #...#         #...#         #...#"<<endl;
	cout<<"           ....**********##.....           ###                 ###           ###           ###"<<endl;
	cout<<"           ....****    *****...."<<endl;
	cout<<"             ####        ####"<<endl;
	cout<<"           ######        ######"<<endl;
	cout<<"##############################################################              ##################################"<<endl;
	cout<<"#...#......#.##...#......#.##...#......#.##------------------#              #...#......#.##------------------#"<<endl;
	cout<<"###########################################------------------#              ###############------------------#"<<endl;
	cout<<"#..#....#....##..#....#....##..#....#....#####################              #..#....#....#####################"<<endl;
	cout<<"##########################################    #----------#                  ##############    #----------#"<<endl;
	cout<<"#.....#......##.....#......##.....#......#    #----------#                  #.....#......#    #----------#"<<endl;
	cout<<"##########################################    #----------#                  ##############    #----------#"<<endl;
	cout<<"#.#..#....#..##.#..#....#..##.#..#....#..#    #----------#                  #.#..#....#..#    #----------#"<<endl;
	cout<<"##########################################    ############                  ##############    ############"<<endl;
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值