欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

cpp实验一

程序员文章站 2022-04-12 19:49:53
#include using namespace std;int main(){ int a; cin>>a; switch(a) { case(1): case(2): case(3): case(4): case(5): cout<<"workday.Let's work h ......

#include<iostream>
using namespace std;
int main()
{
int a;
cin>>a;
switch(a)
{
case(1):
case(2):
case(3):
case(4):
case(5):
cout<<"workday.Let's work hard";
break;
case(6):
case(7):
cout<<"weekday.Let's have a rest";
default:
cout<<"invalid input" ;
}
return 0;
}cpp实验一

 

#include<iostream>

using namespace std;
int main()
{
int a,n=0;
cin >> a;
while (a>0)
{
n=n*10+a%10;
a=a/10;
}
cout<<n;
return 0;
} cpp实验一