提交时间:2019-09-22 20:15:33
运行 ID: 874
#include<iostream> int main(){ int a,b,c; scanf("%d",&a); b=1; c=0; while(b<=a){ c=c+b; b=b+2; } return 0; }