摘要:
问题1:确保输出的数值在374-465之间 问题2:输出4个“学号+0+三位随机数”形式的随机数值 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #d 阅读全文
摘要:
#include <stdio.h> #include <math.h> int main() { double x, ans; while (scanf("%lf", &x) != EOF) { ans = pow(x, 365); printf("%.2f的365次方: %.2f\n", x, 阅读全文