c语言输入姓名或学号 输入姓名学号的c++编程
可以参考下面的代码:#include <stdio.h>#include <stdlib.h> int main(void) { FILE *fp=fopen("data.txt","r"); if (!fp) { fp=fopen("data.txt","w"); printf("请输入姓名:.
#include void main() { file *fp; int a[5],i,max; fp=fopen("a.txt","w"); for(i=0;i scanf("%d",&a[i]); max=a[0]; for(i=1;i if(max max=a[i]; fprintf(fp,"%d",max); fclose(fp); }
求一个C语言程序,录入学生的名字和学号.struct student{ char name[10];//名字 int num;//学号 } Stu; 定义一个结构体数组,再输入数据
c语言 怎么编译输入本人学号 输出本人名字学号可以用int类型接收,名字用字符串.scanf("%d",&sno);scanf("%s",name);getchar();
C语言程序,键盘输入你的名字和学号在屏幕显示: Hello,名字 你的学号.# include "stdio.h" int main (void) { char a; int x; scanf("%c",&a); scanf("%d",&x); printf("hello,%c你的学号是%d",a,x); return 0; }
编写一个C语言程序,显示自己的学号,姓名,班级和电子邮箱此类程序,没有额外要求情况下,直接打印即可.如 学号:12345 姓名:赵手快 班级:一年一班 电子邮箱:youxiang@xxx.xx 那么直接输出:1234567 intmain() { printf("学号:12345\n"); printf("姓名:赵手快\n"); printf("班级:一年一班\n"); printf("电子邮箱:youxiang@xxx.xx\n"); } 这样就是符合需求的了.
在线等30分钟:c语言编程:能够输入100个学生的学号和姓名,并将... 已.//这个可以吗#include <stdio.h>#include <string.h>#define N 100 struct STUDENT { . printf("请输入学号:"); scanf("%s",student[i].id); printf("请输入姓名"); .
C语言编程!用姓名,学号,数学成绩和语文成绩描述一个学生的情况.编写.看代码:#include typedef struct { char name[20]; char id[20]; float math_score; float . student stu[N]; for (i = 0; i { printf ("输入第 %d 个学生的信息(顺序为姓名,学号,数.
C语言编写学生信息录入 信息包括学号 姓名 性别 年龄 成绩 能实现学.# include "iostream"# include "String.h" using namespace std; struct List { char . cout<<"请输入需查询的姓名:"; cin>>b; cout<<"查询人的学号为:"; cout<<.
输入学生姓名,学号,期末各科成绩,输出姓名,学号,上学期期末总分,平均.#include<stdio.h>#include<conio.h> int main() { char name[2][20]={NULL}; int ID[2]={0}; float score[3][2]={0}; printf("请输入第1个学生的姓名: \n"); gets(name[0]); .