Mister-小方


私信TA

用户名:1104986125

访问量:250543

签 名:

如此英俊为哪般

等  级
排  名 4
经  验 37284
参赛次数 1
文章发表 68
年  龄 19
在职情况 学生
学  校 大连交通大学
专  业 车辆工程

  自我简介:

解题思路以及注意事项:

  1. 本题主要了解scanf的用法,其格式为            scanf("%d或%c或%f(这里写入你想要输入的变量的格式)",&ch(这里写你想要把输入的值赋给的变量));

  2. 一定要注意输入格式不能错,整型用%d,字符型用%c,浮点型用%f。

  3. &一定不能掉了,掉了编译链接没问题,但运行的时候会崩溃。

实例代码:

#include"stdio.h"
int main()
{
    char ch1,ch2,ch3,ch4,ch5;
    scanf("%c",&ch1);
    scanf("%c",&ch2);
    scanf("%c",&ch3);
    scanf("%c",&ch4);
    scanf("%c",&ch5);
    printf("%c%c%c%c%c",ch1+4,ch2+4,ch3+4,ch4+4,ch5+4);
    return 0;
}

有什么不懂的可以在评论区评论

 

0.0分

215 人评分

  评论区

#include<stdio.h>
int main()
{char c1=C,
 char   c2=h,
 char   c3=i,
 char   c4=n,
 char   c5=a;
    c1=C+4;
    c2=h+4;
    c3=i+4;
    c4=n+4;
    c5=a+4;
 printf("%c,%c,%c,%c,%c\n",c1,c2,c3,c4,c5);
return 0}为什莫错了
2018-10-19 21:43:15
这个 #include"stdio.h" 不应该是 #include<stdio.h> 吗?
2018-10-13 22:28:23
#include<stdio.h>

int main(void)
{
    char c1='C';
    char c2='h';
    char c3='i';
    char c4='n';
    char c5='a';

    c1+=4;
    c2+=4;
    c3+=4;
    c4+=4;
    c5+=4;

    printf("%c%c%c%c%c",c1,c2,c3,c4,c5);
    
    return 0;
}
2018-09-12 17:30:42
#include<stdio.h>
int main()
{
	char c[5],a[5];
	int i;
	scanf("%s",&c[0]);
	for(i=0;i<5;i++)
	{
		a[i]=c[i]+4;
	}
	printf("%s\n",&a[0]);
	return 0;
}



用vc编译器为什么会出现乱码??
2018-08-24 19:39:11
没明白ch1---ch5;系统默认的就是ch1是C;ch2是h吗
2018-07-05 01:05:59
这题不考虑最后面的四个数吗
2018-06-18 22:09:49
#include<stdio.h>
int main()
{
    char c1,c2,c3,c4,c5;
    c1='C';c2='h';c3='i';c4='n';c5='a';
    printf("%c%c%c%c%c\n",c1,c2,c3,c4,c5);
    c1='C'+4;c2='h'+4;c3='i'+4;c4='n'+4;c5='a'+4;
    printf("%c%c%c%c%c\n",c1,c2,c3,c4,c5);
    return 0;
}
我这样在自己的编译器里运行时正确的呀?好奇怪?怎么显示答案错误呢?
2018-04-24 11:36:36
#include<stdio.h>
int main()
{
   char ch1,ch2,ch3,ch4,ch5;
   scanf("%c",&ch1);
   scanf("%c",&ch2);
   scanf("%c",&ch3);
   scanf("%c",&ch4);
   scanf("%c",&ch5);
   printf("%c%c%c%c%c%c",ch1+4,ch2+4,ch3+4,ch4+4,ch5+4);
    return 0;
}
为什么我的老显示错误?
2018-04-20 22:23:13