编写一个C程序,输出以下信息: Very good!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写一个C程序,输出以下信息: Very good!相关的知识,希望对你有一定的参考价值。

参考技术A ...........真是.....
#include "stdio.h"
main()
char c;
printf("YOU ARE VERY BAD!You are not mentally retarded???? Y or N!!!!!\n");
c=getchar();
if(c="Y")
printf("YOU ARE VERY BAD!\n");
if(c="N")
printf("YOU ARE LIE!\n");
参考技术B include <stdio.h>
void main()


printf("Very good!");
参考技术C #include <stdio.h>
void main()

printf("very good!");
本回答被提问者采纳
参考技术D #include <stdio.h>
void main()

printf("very good!");
第5个回答  2007-03-14 include <stdio.h>
main()

printf("Very good!");

用C++编写程序:输入10个数,输出其中最大的数

考试试题

#include <iostream.h>

void main()

int i,d[10],max;
/* 输入模块 */
cout<<"请输入这十个数:"<<endl;
for(i=0;i<10;i++)
cin>>d[i];
/* 比较模块 */
max=d[0];
for(i=1;i<10;i++)
if(max<d[i])max=d[i];

cout<<"最大数为:"<<max<<"。"<<endl;
参考技术A 已经在VC++6.0上调试过了,能够很好地正确运行

#include <iostream>
using namespace std;

void main()

float array[10];
for(int i=0; i<10; i++)

cout<<"请输入第"<<(i+1)<<"个数"<<endl;
cin>>array[i];


float k=array[0];
for(i=1; i<10; i++)
if(array[i]>k)
k=array[i];
cout<<endl<<"这10个数中最大的数是:";
cout<<k<<endl;
参考技术B 回答

答:亲,步骤:1.先声明一个数组用来存入输入的整数,max是最大值的索引

2.从键盘上输入10个数并存入数组

3.max的初值为0,从a【0】开始遍历数组,如果有值比max位置对应的值大,就把当前的i赋给max

4.遍历结束,输出最大值

程序:

#include

int main()

\\x09int a[10];

\\x09int i;

\\x09int max;

\\x09cout<<"输入10个整数"<

\\x09for(i=0;i<10;i++)

\\x09

\\x09\\x09cin>>a[i];

\\x09

\\x09for(max=0,i=0;i<10;i++)

\\x09

\\x09\\x09if(a[max]

\\x09\\x09\\x09max=i;

\\x09

\\x09cout<<"最大值为"<

\\x09return 0;

参考技术C #include<iostream>
using namespace std;
int main()

int i,a,max;
for(i=1;i<=10;i++)

cin>>a;
if(i==1)max=a;
if(max<a)max=a;

cout<<"最大值:"<<max<<endl;
return 0;
参考技术D #include<stdio.h>
void main()

int a[10];
int i,m;
for(i=0;i<10;i++)
scanf("%d",&a[i]);
m=a[0];
for(i=0;i<10;i++)
if(m<a[i])
m=a[i];
printf("%d/n",m);

以上是关于编写一个C程序,输出以下信息: Very good!的主要内容,如果未能解决你的问题,请参考以下文章

题目是用c输出以下信息:Very good

编写一个c程序,输入“very good”

用c语言程序实现在屏幕上输出:very good!并且外面一圈*共24个

c语言 very good

用C语言输出Very good!

* * * * * * * * * * * very good * * * * * * * * * * * 这个东西用c语言得输入啥才能让它输出?