C++编写程序,功能是提问用户“现在正在下雨吗?”提示用户输入Y或N。若输入Y,显示“正在下雨”;输入N,

C++编写程序,功能是提问用户“现在正在下雨吗?”提示用户输入Y或N。若输入Y,显示“正在下雨”;输入N,,第1张

#include<iostream>

using namespace std

void main()

{char a

cout<<"现在在下雨吗?"

cout<<"请输入Y/N"

cin>>a

if(a=='Y') cout<<"正在下雨"

else if (a=='N') cout<<"现在没有下雨"

else cout<<"现在正在下雨吗?"

}

//随便编了下 应该可以吧 注意下大小写

#include "stdio.h"

main()

{

char c1,c2

printf("现在正在下雨吗?")

scanf("%c",&c1)

fflush(stdin) /*只需要 加一句*/

if(c1=='Y')

printf("现在正在下雨。")

else if(c1=='N')

{

printf("现在没有下雨。\n今天会有太阳吗?(Y/N)\n")

scanf("%c",&c2)

if(c2=='Y')

printf("今天是晴天!\n")

else if(c2=='N')

printf("今天是阴天!\n")

}

}

#include <iostream>

using namespace std

void main()

{

cout<<"现在正在下雨吗?请输出Y或N"<<endl

char answer

cin>>answer

if(answer=='Y'||answer=='y')

cout<<"现在正在下雨"<<endl

else

cout<<"现在没有下雨"<<endl

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11161354.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存