出点有水准的?ok?
#include
main()
{
float a;
printf("输入身高:");
scanf("%f",&a);
if(a<=1.7&&a>=1.6)
printf("良\n");
else if(a>1.7&&a<2.5)
printf("优\n");
else if(a<1.6)
printf("三等残废\n");
else /*如果不需要这句,可删除这两行*/
printf(" 不可能有这样的身高!\n");
}
2.
#include
main()
{
int i,j;
for(i=0;i<=4;i++)
{
for(j=0;j<2*i-1;j++)
printf("*");
printf("\n");
}
}
这是第一道题
#include
main()
{
int tall;
printf("欢迎使用此程序,现在请你输入您的身高(cm)\n");
scanf("%d",&tall);
if(tall<=0||tall>300)
printf("对不起,您的输入有误,请重新输入!\n");
else if(tall>=170)
printf("优\n");
else if(tall>=160&&tall<170)
printf("良");
else
printf("三等残废");
}
第一道题:
#include
using namespace std;
void main()
{
cout << "请输入身高信息:";
float a;
cin >> a;
if(a<1.60)
cout << "输入错误,请重新输入数据" << endl;
else
if(a>1.70)
cout << "优" << endl ;
else cout << "三等残废" << endl;
}
1,身高问题
include
main(){
double h;
printf("please input body hights:\n");
scanf("%d",&h);
if(h>2.5||h<=0)
printf("your input is wrong!);
else
{
if(h>1.70)
printf("优\n");
else if(h>=1.60);
printf("良\n“);
else(h<1.60)
pritf("三等残废\n");
}
}
2,*号问题
main(){
int i,j;
char c[5][7]={{'','','','*'},{'','','*','*','*'},{'','*','*','*','*','*'},{'*','*','*','*','*','*','*'}};
for(i=0;i<4;i++)
{for(j=0;j<7;j++)
printf("%c",c[i][j]);
printf("\n");
}
}
我是直接写的,没有调试,应该有些小错误,不过有也是语法上的,基本过程还是可以的,你试试!
#include
using namespace std;
int main()
{float height;
cout <<"请输入身高"<
if (height>1.7)
cout <<"优"<
cout <<"良"<
}
第二题:
#include
using namespace std;
int main()
{
int i,j;
for (i=1;i<5;i++)
for (j=1;j<=2*i-1;j++)
cout <<"*";
cout <
}