2019年6月17日

6

摘要: #include<stdio.h> int average(int x,int y,int z) { int s; s=(x+y+z)/3; return s; } int main() { int average(int x,int y,int z); int a[5][3],i,j,s,s1; 阅读全文

posted @ 2019-06-17 14:06 张立6666 阅读(124) 评论(0) 推荐(0) 编辑

3

摘要: #include <stdio.h> int main( ) { int t ,s; s=0; for(t=22;t<=1002;t=t+20) s=s+t; printf("%d",s); return 0; } #include <stdio.h> int main( ) { int n=100 阅读全文

posted @ 2019-06-17 14:05 张立6666 阅读(138) 评论(0) 推荐(0) 编辑

导航