導航:首頁 > 考試分析 > c語言小學期大作業答案

c語言小學期大作業答案

發布時間:2021-01-21 15:10:34

1. 急求C語言期末大作業:學生成績管理系統!!!(並附有詳解)

1、題目:
學生成績管理程序
2、要求:
1)編制一個統計學生考試分數的管理程序。
2)設學生成績已以一個學生一個記錄的形式存儲在文件中,
3)每位學生記錄包含的信息有:姓名,學號和各門功課的成績。
4)程序具有以下幾項功能:求出各門課程的總分,平均分,按姓名,
5)按學號尋找其記錄並顯示,瀏覽全部學生成績和按總分由高到低顯示學生信息等。
#include<iostream>
#include<string>
using namespace std;
struct record
{
char name[20]; /* 姓名 */
char code[20]; /* 學號 */
int mathmark; /* 數學課程成績 */
int englishmark; /* 英語課程成績 */
int compmark; /* 計算機課程成績 */
}stu[20];
int total[20][3],avg[20][3];
int student_total[20],flag[20];

void input()//從鍵盤輸入20個學生的各項信息
{
int i;
for(i=0;i<20;i++)
{
cout<<"輸入第"<<i+1<<"個學生信息"<<endl;
cout<<"輸入學生姓名:";
cin>>stu[i].name;
cout<<"輸入學生學號:";
cin>>stu[i].code;
cout<<"輸入數學成績: ";
cin>>stu[i].mathmark;
cout<<"輸入英語成績: ";
cin>>stu[i].englishmark;
cout<<"輸入計算機成績: ";
cin>>stu[i].compmark;
cout<<endl;
}
}
void find_by_name(char *p)//按姓名尋找其記錄並顯示,如輸入「張三」,即可輸出該同學的學號和三門功課的成績
{
int i;
for(i=0;i<20;i++)
if(strcmp(stu[i].name,p)==0)
{
cout<<"學號\t"<<"數學\t"<<"英語\t"<<"計算機"<<endl;
cout<<stu[i].code<<"\t"<<stu[i].mathmark<<"\t"<<stu[i].englishmark<<"\t"<<stu[i].compmark<<endl;
break;
}
}

void find_by_code(char *p)//按學號尋找其記錄並顯示,如輸入「09001」,即可輸出該同學的姓名和三門功課的成績
{
int i;
for(i=0;i<20;i++)
if(strcmp(stu[i].code,p)==0)
{
cout<<"姓名\t"<<"數學\t"<<"英語\t"<<"計算機"<<endl;
cout<<stu[i].name<<"\t"<<stu[i].mathmark<<"\t"<<stu[i].englishmark<<"\t"<<stu[i].compmark<<endl;
break;
}
}
void disp()//瀏覽全部學生的各項信息
{
int i;
cout<<"姓名\t"<<"學號\t"<<"數學\t"<<"英語\t"<<"計算機"<<endl;
for(i=0;i<20;i++)
{
cout<<stu[i].name<<"\t"<<stu[i].code<<"\t"<<stu[i].mathmark<<"\t"<<stu[i].englishmark<<"\t"<<stu[i].compmark<<endl;
}
}

void dis_by_total()//按總分由高到低顯示學生信息等
{
int i,j,n;
int temp1,temp2;
for(i=0;i<20;i++)flag[i]=i;
n=19;
while(n>0)
{
j=0;
for(i=0;i<n;i++)
if(student_total[i]<student_total[i+1])
{
temp1=student_total[i];
student_total[i]=student_total[i+1];
student_total[i+1]=temp1;
temp2=flag[i];
flag[i]=flag[i+1];
flag[i+1]=temp2;
j=i;
}
n=j;
}
cout<<"姓名\t"<<"學號\t"<<"數學\t"<<"英語\t"<<"計算機"<<endl;
for(i=0;i<20;i++)
{
cout<<stu[flag[i]].name<<"\t"<<stu[flag[i]].code<<"\t"<<stu[flag[i]].mathmark<<"\t"<<stu[flag[i]].englishmark<<"\t"<<stu[flag[i]].compmark<<endl;
}
}
int main()
{
char name[20];
char code[20];
cout<<"請輸入學生信息!!"<<endl;
input();
cout<<"\n請輸入您要查找的名字:";
cin>>name;
find_by_name(name);

cout<<"\n請輸入您要查找的學號:";
cin>>code;
find_by_code(code);

cout<<"\n顯示所有學生信息:"<<endl;
disp();

cout<<"\n按總分由高到低顯示學生信息!!"<<endl;
dis_by_total();
return 0;
}
自己再根據需要改改,應該可以的

2. C語言大作業,做一個簡單的問題回答小系統

1.回答問題
2.查看分數
3.添加新問題和答案
4.查看題目和答案
5.退出系統
1
1.網路誰最厲害?

A.海洋內之星容 B.滄海雄風 C.海洋之星2009 D.滄海雄風2009
D
繼續嗎?(y/n)y
2.世界上最高的山是什麼?

A.戲碼巴扎黑 B.豬頭山 C.珠穆朗瑪峰 D.馬里亞納
C
繼續嗎?(y/n)y
3.樓主為什麼不會做?

A.樓主太笨 B.老師太笨 C.校長太笨 D.不知道
A
繼續嗎?(y/n)y
4.奧巴馬是哪國老大?

A.法國 B.美國 C.中國
B
繼續嗎?(y/n)y
5.最後一次測試嗎?

A.是的 B.不是
A
繼續嗎?(y/n)y
已到最後一題
返回主菜單
1.回答問題
2.查看分數
3.添加新問題和答案
4.查看題目和答案
5.退出系統
2
現在分數為:5
返回主菜單
1.回答問題
2.查看分數
3.添加新問題和答案
4.查看題目和答案
5.退出系統

暈 代碼貼不上來了

沒有用鏈表 也沒有用

結構體數組

就是純粹的文件解析

我原來還用這個寫過一個比較大的系統

聯系我吧 我把代碼給你發過去

網路上貼上去 提交不顯示 跟沒貼一樣 鄙視網路

現在還是提交不上 已發送 請查收郵箱 有問題請追問
這樣可以么?

3. C語言 期末大作業

進入本人空間研究研究吧版!權
http://user.qzone.qq.com/251143511/blog/1226677988

4. 求一份簡單c語言大作業

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
structSTUDENT{
floatscore[3];
longid;
charnames[20];
};
typedefstructSTUDENTstudent;//simplifythestructSTUDENT
typedefstructSTUDENT*Pstudent;

voidprint();
voidappend();
voidcourse_total();
voidstudent_total();
voidscore_sort(int(*compare)(floata,floatb));
voidnumber_sort();
voidname_sort(Pstudentnames_[30]);
voidnumber_search();
voidname_search();
voidstatistic(Pstudentscores_[30]);

voidshow(inti);

intascend(floata,floatb){
if(a>b)return1;
elsereturn0;
}
intdescend(floata,floatb){
if(a<b)return1;
elsereturn0;
}
intn;//thenumberofstudents

intflg=1;//trueprinttheresult
student*stuArray[30];//

intagain=1;//whethertocontinue
intmain(){
//staticPstudentstuArray=(STUDENT*)malloc(sizeof(STUDENT)*30);
inti;
printf("Inputstudentnumber(n<30):");
scanf("%d",&n);
intchoice;
while(again){
print();
scanf("%d",&choice);
switch(choice){
case1:
append();
break;
case2:
course_total();//useflagtodefinewhethertoprint
break;
case3:
student_total();
break;
case4:
score_sort(descend);
if(flg){
printf(": ");
printf("NO Name MT EN PH SUM AVER ");
for(i=0;i<n;i++)
show(i);
}
break;
case5:
score_sort(descend);
if(flg){
printf(": ");
printf("NO Name MT EN PH SUM AVER ");
for(i=0;i<n;i++)
show(n-1-i);
}
break;
case6:
number_sort();
break;
case7:
name_sort(stuArray);
break;
case8:
number_search();
break;
case9:
name_search();
break;
case10:
statistic(stuArray);
break;
case0:
again=0;
printf("Endofprogram! ");
break;
default:
printf("Inputerror! ");
break;
}

}
return0;
}

voidprint(){
printf("1.Appendrecord ");
printf("2. ");
printf("3. ");
printf("4. ");
printf("5. ");
printf("6.Sortinascendingorderbynumber ");
printf("7.Sortindictionaryorderbyname ");
printf("8.Searchbynumber ");
printf("9.Searchbyname ");
printf("10.Statisticanalysis ");
printf("PleaseInputyourchoice:");
}
voidappend(){
inti;
printf("Inputstudent'sID,nameandscore: ");
for(i=0;i<n;i++){////
stuArray[i]=(student*)malloc(sizeof(student));
scanf("%ld%s",&stuArray[i]->id,stuArray[i]->names);
scanf("%f",&stuArray[i]->score[0]);
scanf("%f",&stuArray[i]->score[1]);
scanf("%f",&stuArray[i]->score[2]);
}
}
voidcourse_total(){
inti;
floatsum0=0.0,sum1=0.0,sum2=0.0;
for(i=0;i<n;i++){
sum0+=stuArray[i]->score[0];
sum1+=stuArray[i]->score[1];
sum2+=stuArray[i]->score[2];
}
if(flg){
printf("course%d:sum=%.0f,aver=%.0f ",1,sum0,sum0/n);
printf("course%d:sum=%.0f,aver=%.0f ",2,sum1,sum1/n);
printf("course%d:sum=%.0f,aver=%.0f ",3,sum2,sum2/n);
}
}
voidstudent_total(){
floattotal[30]={0.0};
inti;
for(i=0;i<n;i++){
total[i]=stuArray[i]->score[0]+stuArray[i]->score[1]+stuArray[i]->score[2];
}
if(flg){
for(i=0;i<n;i++)
printf("student%d:sum=%.0f,aver=%.0f ",i+1,total[i],total[i]/3);
}
}
voidscore_sort(int(*compare)(floata,floatb)){
inti,j;
floattotal[30]={0.0};
for(i=0;i<n;i++){
total[i]=stuArray[i]->score[0]+stuArray[i]->score[1]+stuArray[i]->score[2];
}
for(i=0;i<n;i++){
for(j=0;j<=i;j++)
//if((*compare)(stuArray[i]->score[0]+stuArray[i]->score[1]+stuArray[i]->score[2],stuArray[j]->score[0]+stuArray[j]->score[1]+stuArray[j]->score[2])==0){
if((*compare)(total[i],total[j])==0){//
student*tmp=(student*)malloc(sizeof(student));
memcpy(tmp,stuArray[i],sizeof(student));
memcpy(stuArray[i],stuArray[j],sizeof(student));
memcpy(stuArray[j],tmp,sizeof(student));
}//memcpy->theholethememory
}

}
voidnumber_sort(){//沒必要傳參
inti,j;
for(i=0;i<n;i++){
for(j=0;j<i;j++)
if(stuArray[i]->id<stuArray[j]->id){
student*tmp=(student*)malloc(sizeof(student));
memcpy(tmp,stuArray[i],sizeof(student));
memcpy(stuArray[i],stuArray[j],sizeof(student));
memcpy(stuArray[j],tmp,sizeof(student));
}
}
if(flg){
printf("Sortinascendingorderbynumber: ");
printf("NO Name MT EN PH SUM AVER ");
for(i=0;i<n;i++)
show(i);
}
}
voidname_sort(Pstudentnames_[30]){
inti,j;
for(i=0;i<n;i++){
for(j=0;j<=i;j++)
if(strcmp(names_[i]->names,names_[j]->names)<0){
student*tmp=(student*)malloc(sizeof(student));
memcpy(tmp,stuArray[i],sizeof(student));
memcpy(stuArray[i],stuArray[j],sizeof(student));
memcpy(stuArray[j],tmp,sizeof(student));
}
}
if(flg){
printf("Sortindictionaryorderbyname: ");
printf("NO Name MT EN PH SUM AVER ");
for(i=0;i<n;i++)
show(i);
}
}
voidnumber_search(){
longquery;
printf("Inputthenumberyouwanttosearch:");
scanf("%ld",&query);
inti;
score_sort(descend);//1009887
for(i=0;i<n;i++){
if(stuArray[i]->id==query)
break;
}
if(i!=n){
printf("%d ",i+1);
show(i);
}
else
printf("Notfound! ");
}
voidname_search(){
charquery[20];
score_sort(descend);
printf("Inputthenameyouwanttosearch:");
scanf("%s",query);
inti;
for(i=0;i<n;i++){
if(!strcmp(query,stuArray[i]->names)){
break;
}
}
if(i!=n){
printf("%d ",i+1);
show(i);
}
else
printf("Notfound! ");
}
voidstatistic(Pstudentscores_[30]){//apointerarraystandsforscores
floatMT[30],EN[30],PH[30];
inti;
for(i=0;i<n;i++){
MT[i]=scores_[i]->score[0];
EN[i]=scores_[i]->score[1];
PH[i]=scores_[i]->score[2];
}
intsta[6]={0};//(<60or60-70....)
for(i=0;i<n;i++){
if(MT[i]<60)
sta[0]++;
if(MT[i]==100)
sta[5]++;
if(MT[i]>=60&&MT[i]<=69)
sta[1]++;
if(MT[i]>=70&&MT[i]<=79)
sta[2]++;
if(MT[i]>=80&&MT[i]<=89)
sta[3]++;
if(MT[i]>=90&&MT[i]<=100)
sta[4]++;
}

if(flg){
printf("Forcourse%d: ",1);
printf("<60 %d %.2f%% ",sta[0],sta[0]/(float)n*100);//changentofloat
printf("60-69 %d %.2f%% ",sta[1],sta[1]/(float)n*100);
printf("70-79 %d %.2f%% ",sta[2],sta[2]/(float)n*100);
printf("80-89 %d %.2f%% ",sta[3],sta[3]/(float)n*100);
printf("90-100 %d %.2f%% ",sta[4],sta[4]/(float)n*100);
printf("100 %d %.2f%% ",sta[5],sta[5]/(float)n*100);
}
memset(sta,0,6*sizeof(int));//initializethestaarray
for(i=0;i<n;i++){
if(EN[i]<60)
sta[0]++;
if(EN[i]==100)
sta[5]++;
if(EN[i]>=60&&EN[i]<=69)
sta[1]++;
if(EN[i]>=70&&EN[i]<=79)
sta[2]++;
if(EN[i]>=80&&EN[i]<=89)
sta[3]++;
if(EN[i]>=90&&EN[i]<=100)
sta[4]++;
}

if(flg){
printf("Forcourse%d: ",2);
printf("<60 %d %.2f%% ",sta[0],sta[0]/(float)n*100);//changentofloat
printf("60-69 %d %.2f%% ",sta[1],sta[1]/(float)n*100);
printf("70-79 %d %.2f%% ",sta[2],sta[2]/(float)n*100);
printf("80-89 %d %.2f%% ",sta[3],sta[3]/(float)n*100);
printf("90-100 %d %.2f%% ",sta[4],sta[4]/(float)n*100);
printf("100 %d %.2f%% ",sta[5],sta[5]/(float)n*100);
}
memset(sta,0,6*sizeof(int));
for(i=0;i<n;i++){
if(PH[i]<60)
sta[0]++;
if(PH[i]==100)
sta[5]++;
if(PH[i]>=60&&PH[i]<=69)
sta[1]++;
if(PH[i]>=70&&PH[i]<=79)
sta[2]++;
if(PH[i]>=80&&PH[i]<=89)
sta[3]++;
if(PH[i]>=90&&PH[i]<=100)
sta[4]++;
}

if(flg){
printf("Forcourse%d: ",3);
printf("<60 %d %.2f%% ",sta[0],sta[0]/(float)n*100);//changentofloat
printf("60-69 %d %.2f%% ",sta[1],sta[1]/(float)n*100);
printf("70-79 %d %.2f%% ",sta[2],sta[2]/(float)n*100);
printf("80-89 %d %.2f%% ",sta[3],sta[3]/(float)n*100);
printf("90-100 %d %.2f%% ",sta[4],sta[4]/(float)n*100);
printf("100 %d %.2f%% ",sta[5],sta[5]/(float)n*100);
}
}

voidshow(inti){

printf("%ld %s ",stuArray[i]->id,stuArray[i]->names);//orderistheidaftersort
printf("%.0f %.0f %.0f ",stuArray[i]->score[0],stuArray[i]->score[1],stuArray[i]->score[2]);
floatsum=stuArray[i]->score[0]+stuArray[i]->score[1]+stuArray[i]->score[2];
printf("%.0f %.0f ",sum,sum/3);
}

5. 求 大一C語言期末筆試題及答案 ,謝謝~

一、 單項選擇題(每小題2分,共40分) 將正確選項塗寫在答題紙相應位置上。
1.使用一些圖框表示各種類型的操作,其中輸出框是_A___
A) B) C) D)
2.下面程序執行後,輸出結果為__B__
A)-1,1,0 B)0,1,1 C)0,2,1 D)0,2,0
main()
{ int a=-1,b=1,c;
c=a++||++b;
printf("%d,%d,%d\n",a,b,c);
}
3.在下列標識符中,哪個是不合法的__A__
A)a+b B)_321 C)max D)name
4.設int型的數據長度為2個位元組,則unsigned int型數據的取值范圍是__B__
A)0~28-1 B)0~216-1 C)-215~215-1 D)-28~28-1
5.以下敘述正確的是__C__
A)在C程序中,可以有兩個以上的main函數。
B)在編譯C程序時,可發現注釋中的拼寫錯誤。
C)C程序的每行可以書寫多條語句。
C)scanf和printf是C語言提供的輸入輸出語句。
6.正確的賦值語句是_A___
A)a=2+(b=1); B)a=+b=3 C)a=b=c D)y=int(x)
7.下列程序的運行結果是__C__
A)10 B)2*5=10 C)a*b=10 D)2*5=a*b
#include〈stdio.h〉
main()
{ int a=2 ,b=5 ;
printf("a*b=%d\n",a*b);
}
8.下面程序片段執行後,y的值為__D__
A)2 B)0 C)6 D)4
int x=2 ,y=0;
y=x;
if(x<5) y=y+2;
x=6;
9.以下對C語言函數的描述中,正確的是_A___
A)調用函數時,參數可以是表達式
B)函數的定義可以是嵌套
C)函數必須有返回值
D)所有函數必須在同一個程序文件中定義
10.在C 語言中,函數返回值的類型由__D__決定。
A)調用函數時臨時決定 B)return語句中的表達式類型
C)調用函數的主調函數類型 D)定義函數時所指定的函數類型
11.以下程序的輸出結果是_D___
A)10 B)11 C)12 D)13
#define MA(x) x*(x+3)
main()
{ int a=1,b=2;
printf("%d\n",MA(a+b));
}
12.正確的數組定義是__A__
A)char a[ ]={'A','B','C','\0'}; B)int a[3]={1,2,3,4,5};
C)char a="ABC\0"; D)int a[ ] ="ABC";
13.設有數組定義:float a[ ]={1,2,3,4,5};則數組a所佔的內存空間為_B___
A)10個位元組 B)20個位元組 C)30個位元組 D) 40
14.設有數組定義:int a[ 3];則正確的賦值為__C__
A)a[3]=5; B)a=1,2,3; C)a[0]=3; D)a={1,2,3};
15.下列程序執行後的輸出結果是(B )
A)abcd0you B)abcd C)you D)abcdeyou
main( )
{ char arr[10] ="abcde";
strcat (arr,"you");
arr[4]='\0';
printf("%s\n",arr);
}
16.有如下程序段
int *p1,a=10 ,**p2;
p1=&a; p2=&p1; **p2=a+10;
執行該程序段後,a的值為__B__
A)編譯出錯B)20 C)隨機數 D)10
17.對於基類型相同的兩個指針變數,能夠進行運算的是__A__
A)= B)*C)/ D)+
18.設有以下定義:
int a[4][5]={1,2,3,4,5,,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20};
int (*p)[5]=a;
則下列能夠正確表示數組元素a[2][3]的表達式是__C__
A)*((*p+3)[2]) B)*(*(*p+6)) C)*(*(a+2)+3) D)*(*p+2)+3
19.下列程序的輸出結果是__B__
A)3 B)4 C)5 D)6
struct abc
{ int a,b; };
main( )
{ struct abc x[2]={ {1,2},{3,4}};
int t;
t=x[0].a*x[1].b;
printf("%d\n",t);
}
20.對於C語言的文件,正確的結論是__A__
A)文件操作必須先打開文件 B)文件的存取只能是隨機方式
C)文件又由數據行組成 D)只能處理二進制文件
二、 填空題(1~5題,每空2分,6~7題,每空3分,共25分)
1.設有以下變數定義,並已賦確定的值
char w; int x; float y; double z;
則表達式:w*x +z-y所求值的數據類型位 double 。
2.在使用Turbo C調試C程序時,按F9鍵是指 編譯、連接 。
3.如果一個函數只能被本文件中其他函數所調用,它稱為 內部函數 。
4.在對一個文件讀寫之前要 打開文件 。
5.下面出錯信息的含義是 重復聲明main 。
Redeclaration of 'main'
6.程序的功能是:輸出所有能被3整除且個位數為6的3的位數。
#include <stgio.h>
main()
{ int i;
for(i=106; i<996; i+=10 )
if(i%3==0) printf(「%d\n」,i) ;
}
7.以下程序用遞歸法求解 ,當最後一項的值小於0.00001時,累加結束。
main()
{ double s,x;
double sum(double,double,double *);
scanf("%lf",&x);
s=1.0;
if( x>1 )
{ printf("s=%10.5lf\n",sum(1.0,x,&s); )
else printf("data error!\n");
}
double sum(double t,double p, double *a )
{ t=t/p;
if(t>=0.00001)
sum(t,p,a);
*a+= *a+=t ;
return(*a);
}

三、修改程序題(每個*found*下面都有一處錯誤,共有5處錯誤,每處3分,共15分)
1.下面的程序將輸入的兩個整數按大小順序輸出。請改正程序中的錯誤,使它能得出正確的結果。
注意:不要改動main函數,不得增行或刪行,也不得更改程序的結構!
/**********found**********/
void swap(int *p1,*p2)
{ int temp; (int*temp)
temp=*p1;
/**********found**********/
p1=p2;
*p2=temp; (*p2=*temp)
}
main()
{ int a,b;
int *p_1,*p_2;
scanf("%d%d",&a,&b);
p_1=&a; p_2=&b;
if(a<b) swap(p_1,p_2);
printf("\n%d,%d\n",a,b);
}
2.建立字元串「Hi xxxxxx How are you.」,在字元串xxxxxx的位置輸入自己的姓名,最後輸出完整的字元串。如:姓名為「Christian」,則輸出為「Hi Christ How are you.」。請改正函數fun中的錯誤,使它能得出正確的結果。
注意:不要改動main函數,不得增行或刪行,也不得更改程序的結構。
#include <stdio.h>
#include <string.h>
/**************found******************/
void fun(char string,char name ) (void fun(char *string,char *name ))
{ int i=0;
while(name[i]!='\0' && i<6)
{ string[3+i]=name[i]; (string[3+i]=' ')
i++;
}
/************************found ***************/
for(; i<6; i++)
string[6+i]=' ';/* 代表空格 */
}
main( )
{ char str[30]={"Hi xxxxxx How are you."},c[10];
gets(c);
fun(str,c);
/************************found ***************/
printf("\ns",str[0]); (printf("\ns",str);)
}
四、程序設計題(每題10分,共20分)
1.函數fun 的功能是:在a數組的n個數中找出最小數、最大數以及它們的下標,並由m數組傳回。
注意:不要改動給出的部分源程序,僅要求編寫函數fun。
#include <conio.h>
#include <stdio.h>
#define M 10
void fun(int a[ ],int rn[2],int n)
{

}
main( )
{
int i,a[M],b[2];
printf("input a array:\n");
for(i=0; i<M; i++)
scanf("%d",&a[i];
fun(a,b,M);
printf("The result is :\n");
printf("最小數的下標為:%d ",c[0]);
printf("最大數的下標為:%d ",c[1]);
}
2.不得修改main函數,編寫sort函數的函數體。輸入5個國名並按字母順序排列後輸出。
#include "string.h"
main()
{
void sort(char *name[],int n);
static char *name[]={ "CHINA","AMERICA","AUSTRALIA",
"FRANCE","GERMAN"};
int i,n=5;
sort(name,n);
for(i=0; i<n; i++) printf("%s\n",name[i]);
}
void sort(char *name[],int n)
{

}

6. 我學校c語言期末大作業 求某位好心人幫幫忙~~ 具體要求: 1〉做一個小項目(或稱大作業),解決一個實際問

說具體點唄

7. 求c語言大作業答案.加實驗報告完整的那種

什麼題目!!!!!
讓我來!!!!
我有個C語言XX管理系統

8. C語言大作業

這種題目抄,幾乎沒人會幫你做的,這要襲靠自己,你想到多少代碼,就先寫,就算是定義幾個變數,這是寫了,學習編程,最主

要是要動手做,都敲代碼!不會的地方,再具體問,你一下子發整道題出來,誰都是看一眼,立馬關掉的!

如果我的回答解決了你的問題,花點時間看下我資料,我資料裡面有我新建的群,或看下私信,我也發了私信給你了,歡

迎喜歡C語言,編程語言的加入...一起學習,一起探討,一起進步!

9. C語言大作業有答案可以發一下!!謝謝

為什麼不能用graphics呢?
不用的話只能把窗口抽象化為一個牆
然後建立坐標

10. C語言大作業,小弟跪求原創答案

5、獨立完成所有程序,文檔的編寫和調試工作,不得抄襲;
- -!!!

閱讀全文

與c語言小學期大作業答案相關的資料

熱點內容
小學讀書計劃表格模板 瀏覽:342
小學語文四年級感嘆句 瀏覽:243
天通苑中山實驗小學 瀏覽:596
小學三年級語文補習班內容 瀏覽:921
吉安師范附屬小學作文 瀏覽:396
小學教師備課網站 瀏覽:1
私立美男學院 瀏覽:383
小學六年級上冊語文第六單元試卷涼州島 瀏覽:915
小學1年級手gong大全 瀏覽:459
小學生手抄報的圖片大全圖片大全 瀏覽:68
小學健康知識講座 瀏覽:120
小學畢業季適合發老師的句子 瀏覽:451
汕尾鳳山中心小學校長 瀏覽:606
小學生畢業匯演舞蹈 瀏覽:702
小學生抗擊疫情的表演 瀏覽:107
私立華聯大學本科 瀏覽:61
小學三年級作文我想謝謝你400 瀏覽:855
中小學生睡眠問題 瀏覽:174
小學生公共生活守規則教案 瀏覽:313
淮河私立學校 瀏覽:99