1樓:uspta鄭州站
#include
void input(int x,int n);
void output(int x,int n);
int max(int x,int n);
void sort(int x,int n);
int x[10];
int n;
int main()}}}
2樓:
#include
#include
void input(int x,int n) //讀取n個數到陣列x
void output(int x,int n) //輸出陣列中的n個數
int max(int x,int n) //尋找並返回n個數中最大值
return x[max_index];
}void sort(int x,int n) //對輸入的n個數排序 }
}int main()
/*測試資料
輸入:10
22 333 44 552 122 53 53 223 523234 5
輸出:22 333 44 552 122 53 53 223 523234 5
523234
5 22 44 53 53 122 223 333 552 523234*/
編寫乙個c語言程式,這道題怎麼做?
3樓:
怎麼都是看了沒人幫你寫的?我來幫你寫把,但是沒環境測試,有什麼錯誤或問題,你就追問我。
#include"stdio.h"
main()
}for(i=0;i<4;i++)
for(i=0;i<4;i++)
//處理完了,可以輸出了。
printf("員工當月所創利潤(元) 應發獎金(元) 累計(元)\n");
for(i=0;i<4;i++)
printf("%12.2f%12.2f%12.2f\n",p[i],a[i],sum[i]);}
4樓:威風小草
《c語言程式設計》有例題的,感覺差不多。。。
5樓:廣洲
對了 你有沒有《零起點學通c++》 發我郵箱 感激不盡 [email protected]
這道題怎麼用c語言編寫程式?
6樓:匿名使用者
#include
int main()
c語言程式,這道題怎麼做
7樓:匿名使用者
ffe2是陣列a的首位址,16進製製數
乙個整數佔四個位元組
p+9 = ffe2 + 9*4 = ffe2 + 24 h=10016 h
*p+9=1+9=10=a h
*(p+9)=0
*++p+9=2+9=11=b h
8樓:
%x輸出的是十字的十六進位制的值。
p是乙個位址,指向陣列a的首位址;第乙個printf輸出陣列a的位址。
p+9是乙個位址,因為乙個int佔四個位元組,p是int型別的指標,p+9的實際輸出是陣列a的位址+9*4,即陣列a的位址+36。具體的十六進位制請拿計算器自己算。
*p+9是先取*p再+9,*p是個整數,是陣列a的第乙個元素,所以結果是1+9=10,對應16進製制是a。
*(p+9)是取位址p+9處的值,即陣列a的下標9的元素值,即0。
*++p+9是先++p,此時p指向陣列a的下標1的元素,然後取值,即2,然後+9,最後結果是11,對應十六進位制是b。
9樓:兄弟連教育北京總校
/*第一題^/
#include
#include
int main()
;for(int i=0;de[i]!='\0';i++)printf("密碼為:%s",de);
system("pause");
return 0;}
第二題。我就換樓了。給最佳答案請給這樓。
草啊。。不能發好幾個樓。繼續吧
/*第二題*/
#include
#include
#include
#define max 100
int main()
;printf("請輸入密碼:\n");
gets(de);
for(int i=0;de[i]!='\0';i++)printf("密碼為:%s",de);
system("pause");
return 0;}
/*第三題*/
#include
#include
#include
#define max 9
int main()
;printf("請輸入密碼:\n");
gets(de);
for(int i=0;(i<9)&&(de[i]!='\0');i+=2)
for(int i=1;(i<9)&&(de[i]!='\0');i+=2)
printf("密碼為:%s",de);
system("pause");
return 0;}
請問如何用c語言寫程式計算這道題的結果?求教
10樓:聽不清啊
#include
#include
int main()
11樓:
#include "stdio.h"
void array(char *p,int i,int n,char *x)
else if((p[0]=='3' && p[1]!='2' || p[0]!='3' && p[1]=='2') &&
(p[1]=='2' && p[4]!='4' || p[1]!='2' && p[4]=='4') &&
(p[2]=='1' && p[3]!='2' || p[2]!='1' && p[3]=='2') &&
(p[3]=='3' && p[2]!='5' || p[3]!='3' && p[2]=='5') &&
(p[4]=='4' && p[0]!='1' || p[4]!='4' && p[0]=='1'))
x[0]=p[0],x[1]=p[1],x[2]=p[2],x[3]=p[3],x[4]=p[4];
}int main(int argc,char *argv)
執行結果:
這道題怎麼做?求詳細過程,這道題怎麼做?求詳細過程
x 1 所以e x 1,d x 1 e x 2 e x d x 2 所以p p x 2 1 2 2 e 1 e 1 2 這道題怎麼做 求詳細過程?這是作圖題,只要最後的正等測圖結果,不需要詳細過程。請問這道題怎麼做?求詳細過程,謝謝!由已知 二次函式的對稱軸是 x b 2a b 2a 二次函式過點 ...
這道題怎麼做??急求詳細過程,這道題怎麼做?求詳細過程!!!
三角形ace與bcd 有兩邊是等邊三角形的邊相等,夾角等於角dce加60度相等,所以全等。所以角eab等於cdb。角aob等於 又有 三角形acm與cdn 有ac cd,角eab等於cdb,角acd 所以 cm 三角形cmn是等腰三角形,且有一角為60度,所以是等邊三角形。角cmn 角mca 60度...
C語言程式設計題,求助大神,c語言程式這道題怎麼做,求助大神
include include define n 10000 int main c語言程式這道題怎麼做,求助大神 include stdio.h include math.h define pi 3.1415926 int main int argc,char argv double x,y,t p...