int main(void){ char name[20];printf("请输入你的姓名:");scanf("%s",name);printf("你的姓名是:%s\n",name);return 0;}
char name[40];A(){ printf("");scanf("%s",&name);printf("%s",name);} main(){ A();}
int main(void) { system ("dir e:\\");getch();}
include <stdio.h>struct Student{ char name[20]; float score;};int main(){ int i,j; struct Student a[4]={{"A",3},{"B",6},{"C",12},{"D",9}}; struct Student temp; for(i=0;i<4;i++) { for(j=0;j<=i;j++) { if(a[j].s...
求教我下怎么用c语言..点阵图的概念。这三个字是16x16字型,水平16点x竖直16点大小。可以设1个二维数组A[16][48],把文字所有点存进数组,包括没有笔画的地方存空格。然后再用两层for回圈把数组的内容逐一显示出来
很简单啊!你用两个printf函数打印输出不就行了,s是控制输出字符串的 怎么显示不出来,你肯定哪里弄错了,程序弄上来看看
1 用二维字符数组存储每个名字,每行一个;2 输入五个字符串,即五个国家名字;3 排序,注意用strcmp比较,用strcpy赋值交换;4 输出结果。代码如下:int main(){ char s[5][100],t[100]; int i,j; for(i = 0; i < 5; i ++) scanf("%s",s[i]); for(i = 0;...