摘要:
一 #include <stdio.h>int average1(int a, int b, int c){ int t; t = (a + b + c) / 3; return t;}int average2(int a, int b, int c, int d, int e){ int t; t 阅读全文
摘要:
一 #include <stdio.h> #include"stdafx.h" int add(int a, int b){ int i; i = a + b; printf("%d\n", i); return 0; } int minus(int a, int b){ int i; i = a 阅读全文
摘要:
一 #include<stdio.h>int main(){ int t; long int s=0; for(t=22;t<=1002;t=t+20){ s=s+t; } printf("%ld",s); return 0;} #include<stdio.h>int main(){ int t= 阅读全文