《C&C++完美演绎》源代码

源代码在线查看: 9-11.txt

软件大小: 126 K
上传用户: a22aa11a
关键词: 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* 范例:9-11 */
				#include 
				#include 
				#include 
				
				char std_no[50][10];	/* 学号 */
				char name[50][10];	/* 学生姓名 */
				int chi_score[50];		/* 语文成绩 */
				int eng_score[50];		/* 英文成绩 */
				
				void main(void)
				{
				  printf("输入姓名:");
				  scanf("%s",name[0]);
				  printf("输入中文成绩:");
				  scanf("%d",&chi_score[0]);
				  printf("%s 语文%d分\n",name[0],chi_score[0]);
				
				  strcpy(name[1],"Peipei");
				  chi_score[1] = 90;
				  printf("%s 语文%d分\n",name[1],chi_score[1]);
				
				  getche();
				}
				
							

相关资源