C语言数据读取---scanf/printf

整数读取

1、整型int

#include <stdio.h>

int main(void) {
	int m;
	scanf("%d",&m);
	printf("%d", m);
	return 0;
}

2、长整型 long long int

#include <stdio.h>

int main(void) {
	long long int m;
	scanf("%lld",&m);
	printf("%lld", m);
	return 0;
}

输出:

2147483650

字符读取

#include <stdio.h>

int main(void) {
	char m;
	scanf("%c",&m);
	printf("%c", m);
	return 0;
}

字符串读取

1、一个单词的形式,适用于结构体中。

#include <stdio.h>
#include <string.h>

int main(void) {
	char m[50];
	scanf("%s",m);
	printf("%s", m);
	return 0;
}

输入 输出为:

Hello

2、一个句子的形式

#include <stdio.h>
#include <string.h>

int main(void) {
	char m[50];
	while(scanf("%s", m) != EOF)
		printf("%s ", m);
	return 0;
}

输入 输出为:

Hello world!

构建结构体

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

struct Information
{
	char name[20];//名字是一个字符串数组
	int year;
	int score;
};

结构体读取

以洛谷P5744 【深基7.习9】培训为例:

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

struct Information
{
	char name[20];//名字是一个字符串数组
	int year;
	int score;
};
int main()
{
	int size;
	scanf("%d", &size);
	//定义结构体数组;
	const int m= size;
	struct Information stu[m];
	for(int i=0; i<m; i++)
	{
		scanf("%s %d %d", stu[i].name, &stu[i].year, &stu[i].score);
		stu[i].year +=1;
		stu[i].score = stu[i].score * 1.2 > 600 ? 600 : stu[i].score * 1.2;
		printf("%s %d %d\n", stu[i].name, stu[i].year, stu[i].score);
	}
	return 0;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值