摘要:
#include <stdio.h> long long fun(int n); int main() { int n; long long f; while(scanf("%d", &n) != EOF) { f = fun(n); // 函数调用 printf("n = %d, f = %lld 阅读全文
摘要:
#include <stdio.h> int main() { printf(" O O \n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; } #include <stdio.h> int main() { float x, y; f 阅读全文