1.输出hello world
#include <stdio.h>
int main() {
printf("hello,world");
}
2.求两个整数之和
#include <stdio.h>
int main() {
int a,b,sum;
a=10;
b=5;
sum=a+b;
printf("a+b=%d",sum);
}
3.编写一个C程序,运行时输出以下图形:
*****
*****
*****
*****
4.编写一个程序,输入a,b,c三个值,输出其中最大者
自己的版本:
#include <stdio.h>
int main(){
int a,b,c,max;
printf("please input a,b,c:\n");
scanf("%d %d %d",&a,&b,&c);
if(a>b){
if(a>c){
max=a;
}else{
max=c;
}
}else{
if(b>c){
max=b;
}else{
max=c;
}
}
printf("the max number is %d",max);
}
习题答案版本:
#include <stdio.h>
int main(){
int a,b,c,max;
printf("please input a,b,c:\n");
scanf("%d %d %d",&a,&b,&c);
max=a;
if(max<b)
max=b;
if(max<c)
max=c;
printf("the max number is %d",max);
}