gpt4 book ai didi

c - 编程查找总和,如果输入 'y',则使用 do while 循环重复该过程

转载 作者:行者123 更新时间:2023-11-30 19:00:57 25 4
gpt4 key购买 nike

这里有一条打印消息“您想再次运行吗?”询问,如果我们输入“y”,则程序将重复。

我尝试了这段代码

#include<stdio.h>
int main()
{
int a, b, c;
char ch;
ch = 'y';
printf("enter 1st and 2nd no.");
scanf("%d%d", &a, &b);
{
c = a + b;
printf("%d", c);
printf("Do you want to run again?");
scanf("%s", &ch);
}
while(ch == 'y')
return 0;
}

最佳答案

#include<stdio.h>
int main()
{
int a,b,c;
char ch;

do
{
printf("enter 1st and 2nd no.");
scanf("%d%d",&a,&b);
c = a + b;
printf("%d",c);
printf("Do you want to run again?");
scanf(" %c",&ch);
}
while(ch == 'y');
return 0;
}

关于c - 编程查找总和,如果输入 'y',则使用 do while 循环重复该过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58741331/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com